30 lines
930 B
Python
30 lines
930 B
Python
|
# Generated by Django 2.0.5 on 2018-05-31 03:35
|
||
|
|
||
|
import django.contrib.auth.models
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('auth', '0009_alter_user_last_name_max_length'),
|
||
|
('minecraft_manager', '0002_auto_20180530_2223'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='MinecraftManagerUser',
|
||
|
fields=[
|
||
|
],
|
||
|
options={
|
||
|
'permissions': (('coreprotect_partial', 'Can use CoreProtect GUI except Command/Chat searches'), ('coreprotect_full', 'Can use full CoreProtect GUI'), ('bots', 'Can use the bot control page'), ('chat', 'Can use chat page')),
|
||
|
'proxy': True,
|
||
|
'indexes': [],
|
||
|
},
|
||
|
bases=('auth.user',),
|
||
|
managers=[
|
||
|
('objects', django.contrib.auth.models.UserManager()),
|
||
|
],
|
||
|
),
|
||
|
]
|