Ben Sturmfels
acd2cef276
It's much simpler if "podjango" is the name of the Django app with a single urls.py etc. The reason this is required is because podjango was originally a fully-blown Django website and now it's become a Django app within the Conservancy website.
50 lines
2.6 KiB
Python
50 lines
2.6 KiB
Python
# Generated by Django 3.2.19 on 2023-09-21 08:55
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CastTag',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('label', models.CharField(max_length=100)),
|
|
('slug', models.SlugField()),
|
|
],
|
|
options={
|
|
'db_table': 'cast_tags',
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='Cast',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=200)),
|
|
('slug', models.SlugField(unique=True)),
|
|
('summary', models.TextField(help_text='Use raw HTML. This summary is not included at the beginning of the body when the entry is displayed. It used only for the material on the front page.')),
|
|
('body', models.TextField(help_text='Use raw HTML. Include the full body of any show notes or other information about this episode. It will be labelled on the site as Show Notes. It is included on the detail entry, and in the description data on the cast RSS feed.')),
|
|
('pub_date', models.DateTimeField()),
|
|
('ogg_path', models.CharField(blank=True, help_text='Local filename of the Ogg file, relative to webroot. File should be uploaded into the static media area for casts.', max_length=300)),
|
|
('mp3_path', models.CharField(blank=True, help_text='Local filename of the mp3 file, relative to webroot. File should be uploaded into the static media area for casts.', max_length=300)),
|
|
('ogg_length', models.IntegerField(help_text='size in bytes of ogg file')),
|
|
('mp3_length', models.IntegerField(help_text='size in bytes of mp3 file')),
|
|
('duration', models.CharField(help_text='length in hh:mm:ss of mp3 file', max_length=8)),
|
|
('date_created', models.DateTimeField(auto_now_add=True)),
|
|
('date_last_modified', models.DateTimeField(auto_now=True)),
|
|
('tags', models.ManyToManyField(blank=True, to='cast.CastTag')),
|
|
],
|
|
options={
|
|
'verbose_name_plural': 'casts',
|
|
'db_table': 'casts_entries',
|
|
'ordering': ('-pub_date',),
|
|
'get_latest_by': 'pub_date',
|
|
},
|
|
),
|
|
]
|