1
0
Fork 0
mirror of synced 2024-06-02 02:25:20 +12:00

enforce new models to use uuid keys

This commit is contained in:
Nick Sweeting 2021-04-10 06:32:45 -04:00
parent 1b67dd5c45
commit 6949803395
2 changed files with 24 additions and 0 deletions

View file

@ -3,3 +3,4 @@ from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'core'
default_auto_field = 'django.db.models.UUIDField'

View file

@ -0,0 +1,23 @@
# Generated by Django 3.1.8 on 2021-04-10 10:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0019_auto_20210401_0654'),
]
operations = [
migrations.AlterField(
model_name='archiveresult',
name='id',
field=models.AutoField(primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='tag',
name='id',
field=models.AutoField(primary_key=True, serialize=False, verbose_name='ID'),
),
]