24 lines
605 B
Python
24 lines
605 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("kfet", "0015_auto_20160807_2324")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="settings",
|
|
name="value_account",
|
|
field=models.ForeignKey(
|
|
to="kfet.Account",
|
|
on_delete=django.db.models.deletion.PROTECT,
|
|
default=None,
|
|
null=True,
|
|
blank=True,
|
|
),
|
|
)
|
|
]
|