Migration to match the new endpoint choice avilable in the PersonalApiKey model.
- Legacy-Id: 14973
This commit is contained in:
parent
d53c6e5779
commit
934c884f4d
20
ietf/person/migrations/0002_auto_20180330_0808.py
Normal file
20
ietf/person/migrations/0002_auto_20180330_0808.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.11.11 on 2018-03-30 08:08
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('person', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='personalapikey',
|
||||||
|
name='endpoint',
|
||||||
|
field=models.CharField(choices=[(b'/api/iesg/position', b'/api/iesg/position'), (b'/api/meeting/session/video/url', b'/api/meeting/session/video/url')], max_length=128),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue