Add keystone v3 support via new domain field on credential

This commit is contained in:
AlanCoding
2016-03-18 16:41:09 -04:00
parent edabf23c6a
commit c807d5dcf3
5 changed files with 52 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('main', '0006_v300_changes'),
]
operations = [
migrations.AddField(
model_name='credential',
name='domain',
field=models.CharField(default=b'', help_text='The identifier for the domain.', max_length=100, verbose_name='Domain', blank=True),
),
]