]> git.0d.be Git - chloro.git/blobdiff - chloro/phyll/migrations/0003_note_published.py
misc: extend notes with a "published" flag
[chloro.git] / chloro / phyll / migrations / 0003_note_published.py
diff --git a/chloro/phyll/migrations/0003_note_published.py b/chloro/phyll/migrations/0003_note_published.py
new file mode 100644 (file)
index 0000000..7c5f05e
--- /dev/null
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.17 on 2019-12-29 18:39
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('phyll', '0002_auto_20191229_1932'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='note',
+            name='published',
+            field=models.BooleanField(default=True, verbose_name='Published'),
+        ),
+    ]