Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2270
Something went wrong on our end
Remove thumbnail generation from process
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove thumbnail generation from process
remove-thumbnail-gen
into
master
Overview
3
Commits
10
Pipelines
0
Changes
1
Merged
Theo Lesage
requested to merge
remove-thumbnail-gen
into
master
11 months ago
Overview
3
Commits
10
Pipelines
0
Changes
1
Expand
Closes
#1715 (closed)
0
0
Merge request reports
Viewing commit
14f4baf0
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
14f4baf0
Change single quote to double quote inside migration
· 14f4baf0
Theo Lesage
authored
11 months ago
arkindex/process/migrations/0032_remove_process_generate_thumbnails.py
+
3
−
3
Options
@@ -6,12 +6,12 @@ from django.db import migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
process
'
,
'
0031_process_corpus_check_and_remove_revision_field
'
),
(
"
process
"
,
"
0031_process_corpus_check_and_remove_revision_field
"
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'
process
'
,
name
=
'
generate_thumbnails
'
,
model_name
=
"
process
"
,
name
=
"
generate_thumbnails
"
,
),
]
Loading