summaryrefslogtreecommitdiff
path: root/bak/unused_apps/sketches/migrations/0003_auto_20190303_1057.py
blob: 87cfbf18572e81d6f961903028b3df52f2c79c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Generated by Django 2.1.7 on 2019-03-03 10:57

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('sketches', '0002_auto_20180208_0743'),
    ]

    operations = [
        migrations.AddField(
            model_name='sketch',
            name='subtitle',
            field=models.CharField(blank=True, max_length=250),
        ),
        migrations.AlterField(
            model_name='sketch',
            name='title',
            field=models.CharField(blank=True, default='', max_length=250),
            preserve_default=False,
        ),
    ]