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
35
36
37
|
# Generated by Django 4.2.1 on 2023-05-23 15:25
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('media', '0008_auto_20201202_1155'),
('posts', '0021_alter_post_post_type'),
]
operations = [
migrations.CreateModel(
name='Trip',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(max_length=300)),
('subtitle', models.CharField(blank=True, max_length=200)),
('slug', models.SlugField()),
('body_markdown', models.TextField()),
('body_html', models.TextField(blank=True)),
('date_started', models.DateField()),
('date_ended', models.DateField()),
('featured_image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='media.luximage')),
],
options={
'ordering': ('-date_started',),
},
),
migrations.AddField(
model_name='post',
name='trip',
field=models.ManyToManyField(blank=True, null=True, to='posts.trip'),
),
]
|