Repository URL to install this package:
|
Version:
0.1.1 ▾
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-09-05 13:46
from __future__ import unicode_literals
import authentication.models
import django.contrib.postgres.fields.jsonb
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
initial = True
dependencies = [
('auth', '0008_alter_user_username_max_length'),
]
operations = [
migrations.CreateModel(
name='User',
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')),
('first_name', models.CharField(blank=True, default='', max_length=255)),
('last_name', models.CharField(blank=True, default='', max_length=255)),
('email', models.EmailField(max_length=254, unique=True, verbose_name='email address')),
('username', models.CharField(max_length=255, unique=True, verbose_name='username')),
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
('is_active', models.BooleanField(default=False, help_text='Designates whether this 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')),
('frontend_settings', django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True)),
('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')),
],
options={
'abstract': False,
'verbose_name': 'user',
'swappable': 'AUTH_USER_MODEL',
'permissions': (('plugins_dashboard', 'Can view dashboard plugin'), ('plugins_crm', 'Can view crm plugin'), ('plugins_calendar', 'Can view calendar plugin'), ('widgets_crm', 'Can view crm widget'), ('widgets_person', 'Can view crm person widget')),
'verbose_name_plural': 'users',
},
managers=[
('objects', authentication.models.UserManager()),
],
),
]