Skip to content

Commit 2868576

Browse files
fix pipeline errors
Signed-off-by: Cecilia Lau <cecilialau6776@gmail.com>
1 parent 483960b commit 2868576

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

coldfront/core/allocation/migrations/0006_alter_historicalallocation_options_and_more.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
# SPDX-FileCopyrightText: (C) ColdFront Authors
2+
#
3+
# SPDX-License-Identifier: AGPL-3.0-or-later
4+
15
# Generated by Django 4.2.23 on 2025-09-16 14:45
26

37
from django.db import migrations, models
48

59

610
class Migration(migrations.Migration):
7-
811
dependencies = [
912
("tag", "0001_initial"),
1013
("allocation", "0005_auto_20211117_1413"),

coldfront/core/project/migrations/0007_project_tags.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
# SPDX-FileCopyrightText: (C) ColdFront Authors
2+
#
3+
# SPDX-License-Identifier: AGPL-3.0-or-later
4+
15
# Generated by Django 4.2.23 on 2025-09-16 14:45
26

37
from django.db import migrations, models
48

59

610
class Migration(migrations.Migration):
7-
811
dependencies = [
912
("tag", "0001_initial"),
1013
("project", "0006_historicalproject_institution_project_institution"),

coldfront/core/resource/migrations/0003_alter_historicalresource_options_and_more.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
# SPDX-FileCopyrightText: (C) ColdFront Authors
2+
#
3+
# SPDX-License-Identifier: AGPL-3.0-or-later
4+
15
# Generated by Django 4.2.23 on 2025-09-16 14:45
26

37
from django.db import migrations, models
48

59

610
class Migration(migrations.Migration):
7-
811
dependencies = [
912
("tag", "0001_initial"),
1013
("resource", "0002_auto_20191017_1141"),

coldfront/core/tag/migrations/0001_initial.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1+
# SPDX-FileCopyrightText: (C) ColdFront Authors
2+
#
3+
# SPDX-License-Identifier: AGPL-3.0-or-later
4+
15
# Generated by Django 4.2.23 on 2025-09-16 14:45
26

3-
from django.conf import settings
4-
from django.db import migrations, models
57
import django.db.models.deletion
68
import django.utils.timezone
79
import model_utils.fields
810
import simple_history.models
11+
from django.conf import settings
12+
from django.db import migrations, models
913

1014

1115
class Migration(migrations.Migration):
12-
1316
initial = True
1417

1518
dependencies = [
@@ -85,9 +88,7 @@ class Migration(migrations.Migration):
8588
fields=[
8689
(
8790
"id",
88-
models.IntegerField(
89-
auto_created=True, blank=True, db_index=True, verbose_name="ID"
90-
),
91+
models.IntegerField(auto_created=True, blank=True, db_index=True, verbose_name="ID"),
9192
),
9293
(
9394
"modified",

0 commit comments

Comments
 (0)