mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-27 19:58:47 +00:00
21 lines
441 B
Python
21 lines
441 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('spa', '0013_show_recurrence_rrule'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='show',
|
|
name='recurrence',
|
|
field=models.SmallIntegerField(default=2),
|
|
preserve_default=False,
|
|
),
|
|
]
|