23 lines
697 B
Python
23 lines
697 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='TwitterClient',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
('since_id', models.PositiveIntegerField()),
|
|
('output_channel', models.CharField(default='', max_length=200)),
|
|
('oauth_token', models.CharField(default='', max_length=256)),
|
|
('oauth_token_secret', models.CharField(default='', max_length=256)),
|
|
],
|
|
),
|
|
]
|