django-admin-interface/admin_interface/migrations
CM Lubinski 9ecaa3836c Add migration to convert bytes to unicode.
Python 2 and 3 treat strings differently; in 2 they are bytes and in 3 they
are unicode objects. The Theme fields' attributes were encoded as bytes in the
initial migration (0001) but should be unicode values, leading to a missing
migration whenever the code is ran on Python 3. This changeset "alters" all
the fields to set them to have unicode attributes rather than bytes.

For more context, we've more or less followed the steps outlined here:
https://docs.djangoproject.com/en/1.11/topics/migrations/#supporting-python-2-and-3
2017-06-09 11:41:15 -04:00
..
0001_initial.py Add migrations 2015-11-25 19:07:03 +01:00
0002_add_related_modal.py Added related modal support (related objects popup displayed in modal window) 2017-05-04 17:58:19 +02:00
0003_add_logo_color.py Added possibility to customize the default logo color 2017-05-24 11:44:46 +02:00
0004_rename_title_color.py Renamed field css_header_title_color to title_color according to logo_color 2017-05-24 11:53:33 +02:00
0005_add_recent_actions_visible.py Added possibility to hide recent actions 2017-05-24 11:57:08 +02:00
0006_bytes_to_str.py Add migration to convert bytes to unicode. 2017-06-09 11:41:15 -04:00
__init__.py Add migrations 2015-11-25 19:07:03 +01:00