35 lines
976 B
Python
35 lines
976 B
Python
import uuid
|
|
|
|
import django.db.models.deletion
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0014_alter_comment_created_at_alter_comment_updated_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='projectdraft',
|
|
name='uuid',
|
|
field=models.UUIDField(default=uuid.uuid4, editable=False, unique=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='projectdraft',
|
|
name='user',
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name='project_drafts',
|
|
to=settings.AUTH_USER_MODEL,
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='tempupload',
|
|
name='draft_uuid',
|
|
field=models.UUIDField(blank=True, db_index=True, null=True),
|
|
),
|
|
]
|