Skip to content

Commit

Permalink
add missing Lageruser migration
Browse files Browse the repository at this point in the history
  • Loading branch information
xi committed Jun 20, 2018
1 parent 96b57fc commit c40a9ea
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions users/migrations/0012_rm_default.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2018-06-20 11:42
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('users', '0011_auto_20171107_0733'),
]

operations = [
migrations.AlterField(
model_name='lageruser',
name='theme',
field=models.CharField(choices=[('default', 'default'), ('darkly', 'darkly'), ('simplex', 'simplex'), ('superhero', 'superhero'), ('united', 'united'), ('paper', 'paper')], default='default', max_length=50),
),
]

0 comments on commit c40a9ea

Please sign in to comment.