49 lines
2.2 KiB
Python
49 lines
2.2 KiB
Python
# Generated by Django 5.2.7 on 2026-02-08 03:43
|
|
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Project',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=255)),
|
|
('description', models.TextField(blank=True)),
|
|
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('status', models.CharField(choices=[('draft', 'Draft'), ('scripting', 'Scripting'), ('processing', 'Processing'), ('completed', 'Completed')], default='draft', max_length=20)),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='MediaAsset',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('file', models.FileField(upload_to='assets/%Y/%m/%d/')),
|
|
('asset_type', models.CharField(choices=[('video', 'Video'), ('audio', 'Audio'), ('image', 'Image')], max_length=10)),
|
|
('original_name', models.CharField(max_length=255)),
|
|
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
|
('project', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='assets', to='core.project')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Script',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('prompt', models.TextField()),
|
|
('content', models.TextField()),
|
|
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
|
('project', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='scripts', to='core.project')),
|
|
],
|
|
),
|
|
]
|