summaryrefslogtreecommitdiff
path: root/app/unused_apps/sketches
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-10-07 15:27:00 -0400
committerluxagraf <sng@luxagraf.net>2019-10-07 15:27:00 -0400
commit4fec1159612fad17a7385ba8aadc4a4b165d5aa9 (patch)
treed413ea25e7c09efb29c4e80b8ffb3ca7c229a514 /app/unused_apps/sketches
parent9cdfb6ec377fa534c1203c1af46662c2a1ff6f61 (diff)
added new posts stuff and changed name of src posts
Diffstat (limited to 'app/unused_apps/sketches')
-rw-r--r--app/unused_apps/sketches/migrations/0003_auto_20190303_1057.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/unused_apps/sketches/migrations/0003_auto_20190303_1057.py b/app/unused_apps/sketches/migrations/0003_auto_20190303_1057.py
new file mode 100644
index 0000000..87cfbf1
--- /dev/null
+++ b/app/unused_apps/sketches/migrations/0003_auto_20190303_1057.py
@@ -0,0 +1,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,
+ ),
+ ]