Skip to content

Commit e797a90

Browse files
committed
trove-migrations
1 parent f6dd793 commit e797a90

File tree

5 files changed

+29
-65
lines changed

5 files changed

+29
-65
lines changed

share/migrations/0078_delete_rawdatum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Migration(migrations.Migration):
77

88
dependencies = [
99
('share', '0077_big_cleanup_2025'),
10-
('trove', '0008_no_raw_datum'),
10+
('trove', '0010_no_raw_datum'),
1111
]
1212

1313
operations = [

trove/migrations/0008_no_raw_datum.py

Lines changed: 0 additions & 42 deletions
This file was deleted.

trove/migrations/0010_description_expiration_index.py

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from django.db import migrations, models
2+
3+
4+
class Migration(migrations.Migration):
5+
6+
dependencies = [
7+
('trove', '0009_expiration_date_indexes'),
8+
]
9+
10+
operations = [
11+
migrations.RemoveConstraint(
12+
model_name='archivedindexcardrdf',
13+
name='trove_archivedindexcardrdf_uniq_archived_version',
14+
),
15+
migrations.RemoveField(
16+
model_name='archivedindexcardrdf',
17+
name='from_raw_datum',
18+
),
19+
migrations.RemoveField(
20+
model_name='latestindexcardrdf',
21+
name='from_raw_datum',
22+
),
23+
migrations.RemoveField(
24+
model_name='supplementaryindexcardrdf',
25+
name='from_raw_datum',
26+
),
27+
]

trove/migrations/0009_resource_description_rename.py renamed to trove/migrations/0011_resource_description_rename.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class Migration(migrations.Migration):
66

77
dependencies = [
8-
('trove', '0008_no_raw_datum'),
8+
('trove', '0010_no_raw_datum'),
99
]
1010

1111
operations = [

0 commit comments

Comments
 (0)