From 934c884f4d9a2f946d57664d09cc4b7385b9b309 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 30 Mar 2018 15:11:20 +0000 Subject: [PATCH] Migration to match the new endpoint choice avilable in the PersonalApiKey model. - Legacy-Id: 14973 --- .../migrations/0002_auto_20180330_0808.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ietf/person/migrations/0002_auto_20180330_0808.py diff --git a/ietf/person/migrations/0002_auto_20180330_0808.py b/ietf/person/migrations/0002_auto_20180330_0808.py new file mode 100644 index 000000000..6c852f67c --- /dev/null +++ b/ietf/person/migrations/0002_auto_20180330_0808.py @@ -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), + ), + ]