mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 11:58:04 +00:00
16 lines
392 B
Python
16 lines
392 B
Python
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),
|
|
)
|
|
]
|