]> gitweb.fperrin.net Git - djsite.git/blob - quotes/migrations/0002_auto_20161031_2318.py
Better implement tags, with separate namespaces
[djsite.git] / quotes / migrations / 0002_auto_20161031_2318.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.10.2 on 2016-10-31 23:18
3 from __future__ import unicode_literals
4
5 from django.db import migrations, models
6 import django.utils.timezone
7 import quotes.localmodels
8
9
10 class Migration(migrations.Migration):
11
12     dependencies = [
13         ('quotes', '0001_initial'),
14     ]
15
16     operations = [
17         migrations.AddField(
18             model_name='author',
19             name='creation_date',
20             field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
21             preserve_default=False,
22         ),
23         migrations.AddField(
24             model_name='author',
25             name='last_modification',
26             field=models.DateTimeField(auto_now=True),
27         ),
28         migrations.AddField(
29             model_name='quote',
30             name='creation_date',
31             field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
32             preserve_default=False,
33         ),
34         migrations.AddField(
35             model_name='quote',
36             name='last_modification',
37             field=models.DateTimeField(auto_now=True),
38         ),
39         migrations.AddField(
40             model_name='work',
41             name='creation_date',
42             field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
43             preserve_default=False,
44         ),
45         migrations.AddField(
46             model_name='work',
47             name='last_modification',
48             field=models.DateTimeField(auto_now=True),
49         ),
50         migrations.AlterField(
51             model_name='author',
52             name='notes',
53             field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; may be left blank. Displayed                       on the public pages'),
54         ),
55         migrations.AlterField(
56             model_name='author',
57             name='pvt_notes',
58             field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; not displayed on                           the public interface'),
59         ),
60         migrations.AlterField(
61             model_name='author',
62             name='tags',
63             field=models.ManyToManyField(blank=True, help_text=b'Not implemented yet', to='quotes.AuthorTag'),
64         ),
65         migrations.AlterField(
66             model_name='quote',
67             name='notes',
68             field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; may be left blank. Displayed                       on the public pages'),
69         ),
70         migrations.AlterField(
71             model_name='quote',
72             name='pvt_notes',
73             field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; not displayed on                           the public interface'),
74         ),
75         migrations.AlterField(
76             model_name='work',
77             name='notes',
78             field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; may be left blank. Displayed                       on the public pages'),
79         ),
80         migrations.AlterField(
81             model_name='work',
82             name='pvt_notes',
83             field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; not displayed on                           the public interface'),
84         ),
85         migrations.AlterField(
86             model_name='work',
87             name='tags',
88             field=models.ManyToManyField(blank=True, help_text=b'Not implemented yet', to='quotes.WorkTag'),
89         ),
90     ]