Skip to content
Snippets Groups Projects
Commit a245cff0 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'migrate-to-uuid' into 'master'

Migrate to uuid

See merge request !109
parents 48d6bdc4 c8329328
Branches master
No related tags found
1 merge request!109Migrate to uuid
Pipeline #198533 failed
# Generated by Django 5.2.1 on 2025-05-22 12:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('resint', '0010_drop_site'),
('core', '0087_add_uuid'),
]
operations = [
migrations.AddField(
model_name='livedocument',
name='uuid',
field=models.UUIDField(db_default=models.Func(function='gen_random_uuid'), editable=False, unique=True),
),
migrations.AddField(
model_name='poster',
name='uuid',
field=models.UUIDField(db_default=models.Func(function='gen_random_uuid'), editable=False, unique=True),
),
migrations.AddField(
model_name='postergroup',
name='uuid',
field=models.UUIDField(db_default=models.Func(function='gen_random_uuid'), editable=False, unique=True),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment