21 lines
483 B
Python
21 lines
483 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("admin_interface", "0025_add_demo_option"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="theme",
|
|
name="user",
|
|
field=models.ForeignKey('auth.User', on_delete=models.CASCADE, null=True, blank=True, verbose_name="active for user"),
|
|
),
|
|
]
|