Migration to match the new endpoint choice avilable in the PersonalApiKey model.

- Legacy-Id: 14973
This commit is contained in:
Henrik Levkowetz 2018-03-30 15:11:20 +00:00
parent d53c6e5779
commit 934c884f4d

View 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),
),
]