25 lines
796 B
Python
25 lines
796 B
Python
# Generated by Django 4.2.5 on 2023-09-16 08:16
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('deployment', '0002_deployment_status_alter_deployment_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='deployment',
|
|
name='id',
|
|
field=models.UUIDField(default=uuid.UUID('8584555b-51ea-46a4-aebc-f7a8ab8670a4'), primary_key=True, serialize=False),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='deployment',
|
|
name='status',
|
|
field=models.CharField(choices=[('READY', 'Ready'), ('PENDING', 'Pending'), ('RUNNING', 'Running'), ('SUCCESS', 'Success'), ('FAILED', 'Failed')], default='READY', max_length=7),
|
|
),
|
|
]
|