mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 15:56:56 +00:00
20 lines
434 B
Python
20 lines
434 B
Python
# Generated by Django 6.0.4 on 2026-04-15 18:13
|
|
|
|
import uuid
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("letters", "0006_letterimage"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="letter",
|
|
name="public_id",
|
|
field=models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False),
|
|
),
|
|
]
|