1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Generated by Django 2.1.7 on 2019-03-25 14:12
import datetime
from django.db import migrations, models
import recordings.models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Audio',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(max_length=200)),
('subtitle', models.CharField(blank=True, max_length=200)),
('slug', models.SlugField(blank=True, unique_for_date='pub_date')),
('body_html', models.TextField(blank=True)),
('body_markdown', models.TextField(blank=True)),
('pub_date', models.DateTimeField(default=datetime.datetime.now)),
('mp3', models.FileField(blank=True, null=True, upload_to=recordings.models.get_upload_path)),
('ogg', models.FileField(blank=True, null=True, upload_to=recordings.models.get_upload_path)),
],
options={
'get_latest_by': 'pub_date',
'ordering': ('-pub_date',),
},
),
]
|