-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert change to 0003 and init migrations
- Loading branch information
1 parent
6486145
commit 05f1dd5
Showing
2 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/apps/plots/migrations/0003_alter_default_auto_fields.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.15 on 2024-08-23 14:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("plots", "0002_datarun_expiration_date"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="datarun", | ||
name="id", | ||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID"), | ||
), | ||
migrations.AlterField( | ||
model_name="instrument", | ||
name="id", | ||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID"), | ||
), | ||
migrations.AlterField( | ||
model_name="plotdata", | ||
name="id", | ||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID"), | ||
), | ||
] |