8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-13 05:55:34 +00:00
re2o/users/migrations/0095_user_theme.py

21 lines
476 B
Python
Raw Normal View History

2020-11-17 12:54:33 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-11-16 18:52
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0094_remove_user_profile_image'),
]
operations = [
migrations.AddField(
model_name='user',
name='theme',
field=models.CharField(default='default.css', max_length=255),
),
]