2018-10-14 22:44:37 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-10-14 22:14
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("preferences", "0052_optionaluser_delete_notyetactive")]
|
2018-10-14 22:44:37 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="optionaluser",
|
|
|
|
name="self_change_room",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=False, help_text="Users can edit their room"
|
|
|
|
),
|
|
|
|
)
|
2018-10-14 22:44:37 +00:00
|
|
|
]
|