blob: 14fac6d55d4f6f482bdc92256b1d0add376e26e7 [file] [log] [blame]
Scott Baker5709d5f2014-09-12 14:58:33 -07001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('core', '0001_initial'),
11 ]
12
13 operations = [
14 migrations.AlterField(
15 model_name='slice',
16 name='omf_friendly',
17 field=models.BooleanField(default=False),
18 ),
19 ]