23 lines
576 B
Python
23 lines
576 B
Python
# Generated by Django 4.2.5 on 2023-09-16 17:21
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("deployment", "0006_alter_deployment_id_alter_deployment_status_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="deployment",
|
|
name="id",
|
|
field=models.UUIDField(
|
|
default=uuid.UUID("0cc4ae03-f52e-4f3a-9fe1-fecda707b20e"),
|
|
primary_key=True,
|
|
serialize=False,
|
|
),
|
|
),
|
|
]
|