# -*- coding: utf-8 -*- # Generated by Django 1.10.2 on 2016-10-31 23:18 from __future__ import unicode_literals from django.db import migrations, models import django.utils.timezone import quotes.localmodels class Migration(migrations.Migration): dependencies = [ ('quotes', '0001_initial'), ] operations = [ migrations.AddField( model_name='author', name='creation_date', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), migrations.AddField( model_name='author', name='last_modification', field=models.DateTimeField(auto_now=True), ), migrations.AddField( model_name='quote', name='creation_date', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), migrations.AddField( model_name='quote', name='last_modification', field=models.DateTimeField(auto_now=True), ), migrations.AddField( model_name='work', name='creation_date', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), migrations.AddField( model_name='work', name='last_modification', field=models.DateTimeField(auto_now=True), ), migrations.AlterField( model_name='author', name='notes', field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; may be left blank. Displayed on the public pages'), ), migrations.AlterField( model_name='author', name='pvt_notes', field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; not displayed on the public interface'), ), migrations.AlterField( model_name='author', name='tags', field=models.ManyToManyField(blank=True, help_text=b'Not implemented yet', to='quotes.AuthorTag'), ), migrations.AlterField( model_name='quote', name='notes', field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; may be left blank. Displayed on the public pages'), ), migrations.AlterField( model_name='quote', name='pvt_notes', field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; not displayed on the public interface'), ), migrations.AlterField( model_name='work', name='notes', field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; may be left blank. Displayed on the public pages'), ), migrations.AlterField( model_name='work', name='pvt_notes', field=quotes.localmodels.HTMLField(blank=True, help_text=b'Notes about the entry; not displayed on the public interface'), ), migrations.AlterField( model_name='work', name='tags', field=models.ManyToManyField(blank=True, help_text=b'Not implemented yet', to='quotes.WorkTag'), ), ]