Mercurial > public > sg101
view news/migrations/0003_auto_20151117_2032.py @ 1154:4da4e32b314c
Do not restrict oEmbed support to just video.
This will allow us to embed stuff from SoundClound and ReverbNation.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 27 Dec 2016 10:21:37 -0600 |
parents | 19b86e684cc2 |
children |
line wrap: on
line source
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('news', '0002_auto_20151117_2029'), ] operations = [ migrations.AlterField( model_name='pendingstory', name='version', field=models.SmallIntegerField(default=2), preserve_default=True, ), migrations.AlterField( model_name='story', name='version', field=models.SmallIntegerField(default=2), preserve_default=True, ), ]