A migration

This commit is contained in:
bakatrouble 2019-03-31 23:03:33 +03:00
parent b51d06d305
commit a45a12fb49

View File

@ -0,0 +1,23 @@
# Generated by Django 2.1.5 on 2019-03-31 20:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('feeds', '0005_twitterfeedmoduleconfig'),
]
operations = [
migrations.CreateModel(
name='TapasFeedModuleConfig',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('display_name', models.CharField(max_length=256)),
],
options={
'abstract': False,
},
),
]