forked from DGNum/gestioCOF
kfet_open is updatable
This commit is contained in:
parent
0ac1eaf414
commit
4808650fa0
4 changed files with 53 additions and 1 deletions
24
kfet/migrations/00048_kfet_open_cache.py
Normal file
24
kfet/migrations/00048_kfet_open_cache.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('kfet', '0047_auto_20170104_1528'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='settings',
|
||||
name='value_boolean',
|
||||
field=models.NullBooleanField(default=None),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='settings',
|
||||
name='value_datetime',
|
||||
field=models.DateTimeField(blank=True, null=True, default=None),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue