Skip to content
This repository has been archived by the owner on May 27, 2019. It is now read-only.

Commit

Permalink
added migration for extra social feed option (facebook)
Browse files Browse the repository at this point in the history
  • Loading branch information
tleguijt committed Oct 7, 2016
1 parent a02eeae commit c0a6f3d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions wagtailsocialfeed/migrations/0003_auto_20161006_1021.py
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-10-06 08:21
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('wagtailsocialfeed', '0002_auto_20161005_1032'),
]

operations = [
migrations.AlterField(
model_name='socialfeedconfiguration',
name='source',
field=models.CharField(choices=[('twitter', 'Twitter'), ('instagram', 'Instagram'), ('facebook', 'Facebook')], max_length=100, verbose_name='Feed source'),
),
]

0 comments on commit c0a6f3d

Please sign in to comment.