Skip to content

Commit

Permalink
Reorder migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
wetneb committed May 10, 2023
1 parent c74edc9 commit b674c84
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions store/migrations/0022_recreate_newrevid_index.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.1.15 on 2021-09-23 18:50

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('store', '0021_nonempty_user_and_uid'),
]

operations = [
migrations.AlterField(
model_name='edit',
name='newrevid',
field=models.IntegerField(db_index=True),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('store', '0021_nonempty_user_and_uid'),
('store', '0022_recreate_newrevid_index'),
]

operations = [
Expand Down

0 comments on commit b674c84

Please sign in to comment.