diff options
author | luxagraf <sng@luxagraf.net> | 2016-01-24 16:28:00 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-01-24 16:28:00 -0500 |
commit | 3c30c584f6254ed729f8fda0f898cec8d53566d4 (patch) | |
tree | b2a1b14c95d6b3294e8bf906896f94e64294541f /app/daily/migrations/0009_auto_20160124_1622.py | |
parent | 738b076c2e73d5ee7a1f5cdc930a135bc7854cb6 (diff) |
Added user to daily feature so corrinne can contribute
Diffstat (limited to 'app/daily/migrations/0009_auto_20160124_1622.py')
-rw-r--r-- | app/daily/migrations/0009_auto_20160124_1622.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/daily/migrations/0009_auto_20160124_1622.py b/app/daily/migrations/0009_auto_20160124_1622.py new file mode 100644 index 0000000..c7bde07 --- /dev/null +++ b/app/daily/migrations/0009_auto_20160124_1622.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-01-24 16:22 +from __future__ import unicode_literals + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('daily', '0008_auto_20160124_0914'), + ] + + operations = [ + migrations.AlterField( + model_name='daily', + name='user', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), + ), + ] |