mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 02:33:22 +00:00
45 lines
2.9 KiB
Python
45 lines
2.9 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.core.validators
|
||
|
import django.contrib.auth.models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('auth', '0006_require_contenttypes_0002'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='User',
|
||
|
fields=[
|
||
|
('id', models.AutoField(verbose_name='ID', primary_key=True, auto_created=True, serialize=False)),
|
||
|
('password', models.CharField(max_length=128, verbose_name='password')),
|
||
|
('last_login', models.DateTimeField(blank=True, verbose_name='last login', null=True)),
|
||
|
('is_superuser', models.BooleanField(verbose_name='superuser status', default=False, help_text='Designates that this user has all permissions without explicitly assigning them.')),
|
||
|
('username', models.CharField(unique=True, validators=[django.core.validators.RegexValidator('^[\\w.@+-]+$', 'Enter a valid username. This value may contain only letters, numbers and @/./+/-/_ characters.', 'invalid')], verbose_name='username', max_length=30, error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.')),
|
||
|
('first_name', models.CharField(max_length=30, blank=True, verbose_name='first name')),
|
||
|
('last_name', models.CharField(max_length=30, blank=True, verbose_name='last name')),
|
||
|
('email', models.EmailField(max_length=254, blank=True, verbose_name='email address')),
|
||
|
('is_staff', models.BooleanField(verbose_name='staff status', default=False, help_text='Designates whether the user can log into this admin site.')),
|
||
|
('is_active', models.BooleanField(verbose_name='active', default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.')),
|
||
|
('date_joined', models.DateTimeField(verbose_name='date joined', default=django.utils.timezone.now)),
|
||
|
('nick_name', models.CharField(max_length=30)),
|
||
|
('groups', models.ManyToManyField(related_query_name='user', related_name='user_set', verbose_name='groups', to='auth.Group', blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.')),
|
||
|
('user_permissions', models.ManyToManyField(related_query_name='user', related_name='user_set', verbose_name='user permissions', to='auth.Permission', blank=True, help_text='Specific permissions for this user.')),
|
||
|
],
|
||
|
options={
|
||
|
'verbose_name': 'user',
|
||
|
'verbose_name_plural': 'users',
|
||
|
'abstract': False,
|
||
|
},
|
||
|
managers=[
|
||
|
('objects', django.contrib.auth.models.UserManager()),
|
||
|
],
|
||
|
),
|
||
|
]
|