diff options
author | luxagraf <sng@luxagraf.net> | 2017-12-14 19:58:07 -0800 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-12-14 19:58:07 -0800 |
commit | c903be495237125906e95e2d5fcb9f17df09327c (patch) | |
tree | 27173dad151e2c09105bd1c1b64f9d04210f8d8e /app/notes/migrations/0008_remove_luxnote_date_last_updated.py | |
parent | 83b7318a4672d32ed77cd3f906f43f5ad1cce854 (diff) |
cleaned up notes, archived old apps, moved checkins to locations app
where it should have been from the beginning
Diffstat (limited to 'app/notes/migrations/0008_remove_luxnote_date_last_updated.py')
-rw-r--r-- | app/notes/migrations/0008_remove_luxnote_date_last_updated.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/notes/migrations/0008_remove_luxnote_date_last_updated.py b/app/notes/migrations/0008_remove_luxnote_date_last_updated.py new file mode 100644 index 0000000..b16b2ea --- /dev/null +++ b/app/notes/migrations/0008_remove_luxnote_date_last_updated.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-12-14 22:39 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('notes', '0007_auto_20160617_2143'), + ] + + operations = [ + migrations.RemoveField( + model_name='luxnote', + name='date_last_updated', + ), + ] |