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
38
|
# Generated by Django 4.2.7 on 2024-02-25 10:20
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('media', '0008_auto_20201202_1155'),
('posts', '0024_alter_trip_options_trip_dek'),
]
operations = [
migrations.CreateModel(
name='Guide',
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)),
('seo_title', models.CharField(blank=True, max_length=200)),
('slug', models.SlugField()),
('body_markdown', models.TextField()),
('body_html', models.TextField(blank=True)),
('dek', models.TextField(blank=True, null=True)),
('meta_description', models.CharField(blank=True, max_length=256)),
('last_updated', models.DateTimeField(auto_now=True)),
('is_featured', models.BooleanField(blank=True, default=False)),
('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=0)),
('featured_image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='media.luximage')),
('posts', models.ManyToManyField(blank=True, to='posts.post')),
],
options={
'ordering': ('-last_updated',),
'get_latest_by': 'last_updated',
},
),
]
|