You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
442 B
19 lines
442 B
# Generated by Django 5.1 on 2025-09-22 13:10
|
|
|
|
import uuid
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('biz', '0005_alter_activity_status_campaign'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='campaign',
|
|
name='id',
|
|
field=models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False),
|
|
),
|
|
]
|
|
|