From 090e0af734552e64f8caac0bb58b68694e8a1213 Mon Sep 17 00:00:00 2001 From: Adrian Turjak Date: Mon, 10 Jun 2019 14:05:47 +1200 Subject: [PATCH] Fix old py2 default value for action model This just gets rid of the byte part from: default=b'default' which exists in the initial migration file Change-Id: I99c1625f27c4cf75cb8dedce6fdb46e70bb9c2ef --- .../migrations/0003_auto_20190610_0205.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 adjutant/actions/migrations/0003_auto_20190610_0205.py diff --git a/adjutant/actions/migrations/0003_auto_20190610_0205.py b/adjutant/actions/migrations/0003_auto_20190610_0205.py new file mode 100644 index 0000000..ab4e0d2 --- /dev/null +++ b/adjutant/actions/migrations/0003_auto_20190610_0205.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.21 on 2019-06-10 02:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('actions', '0002_action_auto_approve'), + ] + + operations = [ + migrations.AlterField( + model_name='action', + name='state', + field=models.CharField(default='default', max_length=200), + ), + ]