mirror of
https://github.com/fergalmoran/dss.api.git
synced 2026-01-07 17:13:58 +00:00
25 lines
560 B
Python
25 lines
560 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('spa', '0021_auto_20151112_2017'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='mix',
|
|
name='is_featured',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='mix',
|
|
name='is_private',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|