diff options
author | luxagraf <sng@luxagraf.net> | 2016-07-11 10:59:20 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-07-11 10:59:20 -0400 |
commit | 36c090402e9916b1920bbf48de306135e44a354f (patch) | |
tree | 992dc91915f7f3600050275edf260119b700427d /app/syndication/migrations/0002_auto_20160628_2149.py | |
parent | 7ed163bdaa586e799e0f48901f2df801f0444e86 (diff) |
added facebook token auth stuff
Diffstat (limited to 'app/syndication/migrations/0002_auto_20160628_2149.py')
-rw-r--r-- | app/syndication/migrations/0002_auto_20160628_2149.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/syndication/migrations/0002_auto_20160628_2149.py b/app/syndication/migrations/0002_auto_20160628_2149.py new file mode 100644 index 0000000..51812bf --- /dev/null +++ b/app/syndication/migrations/0002_auto_20160628_2149.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-06-28 21:49 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + dependencies = [ + ('syndication', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='FBOAuthToken', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('short_token', models.TextField()), + ('long_token', models.TextField(blank=True, null=True)), + ('expires', models.DateTimeField(blank=True)), + ('created', models.DateTimeField(default=django.utils.timezone.now)), + ], + ), + migrations.AlterField( + model_name='syndicateditem', + name='status', + field=models.CharField(choices=[('1', 'Unsent'), ('2', 'Sent')], max_length=1, null=True), + ), + ] |