20 lines
448 B
Python
20 lines
448 B
Python
|
|
# Generated by Django 5.1.4 on 2026-06-03 13:58
|
||
|
|
|
||
|
|
import apps.projects.models
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('projects', '0003_libraryasset'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='project',
|
||
|
|
name='back_design',
|
||
|
|
field=models.JSONField(default=apps.projects.models.default_back_design),
|
||
|
|
),
|
||
|
|
]
|