]> git.0d.be Git - chloro.git/blob - chloro/phyll/migrations/0003_note_published.py
misc: extend notes with a "published" flag
[chloro.git] / chloro / phyll / migrations / 0003_note_published.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.11.17 on 2019-12-29 18:39
3 from __future__ import unicode_literals
4
5 from django.db import migrations, models
6
7
8 class Migration(migrations.Migration):
9
10     dependencies = [
11         ('phyll', '0002_auto_20191229_1932'),
12     ]
13
14     operations = [
15         migrations.AddField(
16             model_name='note',
17             name='published',
18             field=models.BooleanField(default=True, verbose_name='Published'),
19         ),
20     ]