23 lines
576 B
Python
23 lines
576 B
Python
# Generated by Django 4.2.5 on 2023-09-16 08:43
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("deployment", "0004_alter_deployment_id_alter_deployment_status_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="deployment",
|
|
name="id",
|
|
field=models.UUIDField(
|
|
default=uuid.UUID("ec7ebcb5-420a-47c3-ba07-e8c340895865"),
|
|
primary_key=True,
|
|
serialize=False,
|
|
),
|
|
),
|
|
]
|