Skip to content

Commit

Permalink
Improved Storage Account
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuluPro committed Jul 31, 2017
1 parent 50d403b commit 244c6ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ao/msazure/migrations/0001_initial.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-07-31 02:02
# Generated by Django 1.11.3 on 2017-07-31 05:24
from __future__ import unicode_literals

from django.db import migrations, models
Expand Down Expand Up @@ -155,7 +155,9 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=100)),
('sku', models.CharField(choices=[(b'Standard_LRS', b'Standard_LRS'), (b'Standard_GRS', b'Standard_GRS'), (b'Premium_LRS', b'Premium_LRS')], max_length=30)),
('location', models.CharField(choices=[(b'eastus', b'eastus'), (b'westus', b'westus'), (b'northus', b'northus')], max_length=20)),
('sku', models.CharField(choices=[(b'Standard_LRS', b'Standard LRS'), (b'Standard_GRS', b'Standard GRS'), (b'Premium_LRS', b'Premium LRS')], max_length=30)),
('sku_tier', models.CharField(choices=[(b'Standard', b'Standard'), (b'Premium', b'Premium')], max_length=30)),
('kind', models.CharField(choices=[(b'Storage', b'Storage'), (b'BlobStorage', b'BlobStorage')], max_length=30)),
('access_tier', models.CharField(choices=[(b'Cool', b'Cool'), (b'Hot', b'Hot')], max_length=30)),
('tags', models.TextField(default=b'{}', max_length=2000)),
Expand Down

0 comments on commit 244c6ee

Please sign in to comment.