From e1ce017ec8bff9047b5cc256431f279f4b83236d Mon Sep 17 00:00:00 2001 From: PCoder Date: Thu, 27 Sep 2018 22:48:23 +0200 Subject: [PATCH] Add migration --- ...lcalculatorpluginmodel_enable_512mb_ram.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 datacenterlight/migrations/0026_dclcalculatorpluginmodel_enable_512mb_ram.py diff --git a/datacenterlight/migrations/0026_dclcalculatorpluginmodel_enable_512mb_ram.py b/datacenterlight/migrations/0026_dclcalculatorpluginmodel_enable_512mb_ram.py new file mode 100644 index 00000000..a29e76b5 --- /dev/null +++ b/datacenterlight/migrations/0026_dclcalculatorpluginmodel_enable_512mb_ram.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.4 on 2018-09-27 20:46 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('datacenterlight', '0025_dclnavbarpluginmodel_show_login_option'), + ] + + operations = [ + migrations.AddField( + model_name='dclcalculatorpluginmodel', + name='enable_512mb_ram', + field=models.BooleanField(default=False), + ), + ]