2017-08-26 14:04:51 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2017-08-26 13:30
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("preferences", "0011_auto_20170825_2307")]
|
2017-08-26 14:04:51 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="generaloption",
|
|
|
|
name="req_expire_hrs",
|
2017-08-26 14:04:51 +00:00
|
|
|
field=models.IntegerField(default=48),
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2017-08-26 14:04:51 +00:00
|
|
|
]
|