41 lines
1.6 KiB
Python
41 lines
1.6 KiB
Python
# Generated by Django 3.2.7 on 2021-09-28 12:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Edit',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('modified', models.DateTimeField(auto_now=True)),
|
|
('slug', models.SlugField()),
|
|
('public', models.BooleanField(default=False)),
|
|
('padma_id', models.CharField(max_length=1024)),
|
|
('annotation_user', models.CharField(max_length=1024)),
|
|
('vimeo_id', models.CharField(default=None, max_length=255, null=True)),
|
|
('data', models.JSONField(default=dict)),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Film',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('modified', models.DateTimeField(auto_now=True)),
|
|
('slug', models.SlugField()),
|
|
('public', models.BooleanField(default=False)),
|
|
('padma_id', models.CharField(max_length=255)),
|
|
('vimeo_id', models.CharField(default=None, max_length=255, null=True)),
|
|
('data', models.JSONField(default=dict)),
|
|
],
|
|
),
|
|
]
|