Updated common.colortheme migration

This commit is contained in:
eeintech 2020-09-08 16:36:58 -05:00
parent 35060ce8dc
commit 8198fad6d5

View File

@ -1,4 +1,4 @@
# Generated by Django 3.0.7 on 2020-09-07 21:13
# Generated by Django 3.0.7 on 2020-09-08 21:35
from django.db import migrations, models
@ -14,7 +14,7 @@ class Migration(migrations.Migration):
name='ColorTheme',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(blank=True, choices=[('', 'Default'), ('-darker', 'Darker')], default='', max_length=20)),
('name', models.CharField(blank=True, choices=[('', 'Default'), ('darker', 'Darker'), ('dark-reader', 'Dark Reader')], default='', max_length=20)),
('user', models.CharField(max_length=150)),
],
),