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
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
All threads resolved!
Hide all comments
Merged
Theo Lesage
requested to merge
remove-thumbnail-gen
into
master
11 months ago
Overview
3
Commits
10
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Expand
Closes
#1715 (closed)
0
0
Merge request reports
Viewing commit
7279692e
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7279692e
Change single quote to double quote inside migration
· 7279692e
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