forked from 0x2620/pandora
sequence id migration
This commit is contained in:
parent
a5c35d0f41
commit
a7e660a8da
1 changed files with 18 additions and 0 deletions
18
pandora/sequence/migrations/0003_alter_sequence_id.py
Normal file
18
pandora/sequence/migrations/0003_alter_sequence_id.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 4.2.3 on 2023-07-29 11:37
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('sequence', '0002_alter_sequence_mode'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='sequence',
|
||||||
|
name='id',
|
||||||
|
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue