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/links/migrations | |
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/links/migrations')
-rw-r--r-- | app/links/migrations/0003_auto_20171214_2239.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/links/migrations/0003_auto_20171214_2239.py b/app/links/migrations/0003_auto_20171214_2239.py new file mode 100644 index 0000000..138cc4c --- /dev/null +++ b/app/links/migrations/0003_auto_20171214_2239.py @@ -0,0 +1,21 @@ +# -*- 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, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + dependencies = [ + ('links', '0002_link_body_markdown'), + ] + + operations = [ + migrations.AlterField( + model_name='link', + name='pub_date', + field=models.DateTimeField(default=django.utils.timezone.now), + ), + ] |