From c3406748de71900354997cc7d658ccb524fd274b Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Wed, 13 Feb 2019 10:58:10 -0500 Subject: [PATCH] Add the new fields to the database --- .../migrations/0063_v350_org_host_limits.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 awx/main/migrations/0063_v350_org_host_limits.py diff --git a/awx/main/migrations/0063_v350_org_host_limits.py b/awx/main/migrations/0063_v350_org_host_limits.py new file mode 100644 index 0000000000..bc410e757a --- /dev/null +++ b/awx/main/migrations/0063_v350_org_host_limits.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.16 on 2019-02-15 20:03 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('main', '0062_v350_new_playbook_stats'), + ] + + operations = [ + migrations.AddField( + model_name='inventoryupdate', + name='org_host_limit_error', + field=models.BooleanField(default=False, editable=False), + ), + migrations.AddField( + model_name='organization', + name='max_hosts', + field=models.PositiveIntegerField(blank=True, default=0, help_text='Maximum number of hosts allowed to be managed by this organization.'), + ), + ]