registered VM types model in the admin

This commit is contained in:
Levi 2016-04-17 20:05:39 -05:00
commit 5e1419cd1c
5 changed files with 49 additions and 5 deletions

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.4 on 2016-04-18 01:03
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('hosting', '0006_auto_20160418_0103'),
]
operations = [
migrations.AlterField(
model_name='virtualmachinetype',
name='hosting_company',
field=models.CharField(choices=[('hetzner_nug', 'Hetzner No Uptime Guarantee'), ('hetzner', 'Hetzner'), ('hetzner_raid6', 'Hetzner Raid6'), ('hetzner_glusterfs', 'Hetzner Glusterfs'), ('bern', 'Bern')], max_length=30),
),
]