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
|
# Generated by Django 2.0.1 on 2018-02-01 20:56
import django.contrib.gis.db.models.fields
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
class Migration(migrations.Migration):
initial = True
dependencies = [
('locations', '0002_checkin'),
]
operations = [
migrations.CreateModel(
name='Sketch',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(blank=True, max_length=250, null=True)),
('slug', models.SlugField(blank=True, unique_for_date='pub_date')),
('pub_date', models.DateTimeField(default=django.utils.timezone.now)),
('body_html', models.TextField(blank=True)),
('body_markdown', models.TextField(verbose_name='Note')),
('point', django.contrib.gis.db.models.fields.PointField(blank=True, null=True, srid=4326)),
('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=1)),
('location', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='locations.Location')),
],
),
]
|