Skip to content

Commit ef5f304

Browse files
committed
add min power field migration
1 parent ecab033 commit ef5f304

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.18 on 2019-04-15 12:15
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('box', '0001_initial'),
12+
]
13+
14+
operations = [
15+
migrations.AddField(
16+
model_name='boxsettings',
17+
name='min_power',
18+
field=models.IntegerField(default=0),
19+
),
20+
]

0 commit comments

Comments
 (0)