mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 18:23:27 +00:00
20 lines
433 B
Python
20 lines
433 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('com', '0004_auto_20171221_1614'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='poster',
|
||
|
name='display_time',
|
||
|
field=models.IntegerField(verbose_name='display time', default=15),
|
||
|
),
|
||
|
]
|