spradio-server-django/savepointradio/core/migrations/0001_initial.py

37 lines
2.3 KiB
Python
Raw Normal View History

# Generated by Django 3.0.3 on 2020-02-16 01:40
2017-12-27 21:11:20 +00:00
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
initial = True
dependencies = [
2020-01-21 17:20:40 +00:00
('auth', '0011_update_proxy_permissions'),
2017-12-27 21:11:20 +00:00
]
operations = [
2020-01-21 17:20:40 +00:00
migrations.CreateModel(
2017-12-27 21:11:20 +00:00
name='RadioUser',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('password', models.CharField(max_length=128, verbose_name='password')),
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),
('email', models.EmailField(max_length=255, unique=True, verbose_name='email address')),
('name', models.CharField(max_length=255, verbose_name='name')),
2020-01-21 17:20:40 +00:00
('is_dj', models.BooleanField(default=False, help_text='Designates whether the user is the automated dj account or is a real person account.', verbose_name='dj status')),
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into the admin site.', verbose_name='staff status')),
('is_active', models.BooleanField(default=True, help_text='Designates whether the user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
2017-12-27 21:11:20 +00:00
('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.Group', verbose_name='groups')),
('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.Permission', verbose_name='user permissions')),
],
options={
'ordering': ['name', 'email'],
},
),
]