mirror of https://gitlab.federez.net/re2o/re2o
6 changed files with 42 additions and 9 deletions
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0033_extension_need_infra'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='iplist', |
|||
name='need_infra', |
|||
field=models.BooleanField(default=False), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue