0013_vmlease_suspend_done.py 454 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-05-16 12:49
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('vm', '0012_auto_20180515_1151'),
    ]

    operations = [
        migrations.AddField(
            model_name='vmlease',
            name='suspend_done',
            field=models.BooleanField(default=False),
        ),
    ]