migrate bigint ids
This commit is contained in:
parent
543d01696e
commit
4fb8879ba0
26 changed files with 936 additions and 0 deletions
18
pandora/news/migrations/0002_alter_news_id.py
Normal file
18
pandora/news/migrations/0002_alter_news_id.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 4.2.3 on 2023-07-27 21:28
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('news', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='news',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue