31 lines
1008 B
Python
31 lines
1008 B
Python
|
# Generated by Django 3.1.3 on 2020-11-30 21:16
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='User',
|
||
|
fields=[
|
||
|
('password', models.CharField(max_length=128, verbose_name='password')),
|
||
|
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
|
||
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('email', models.EmailField(max_length=255, unique=True, verbose_name='email address')),
|
||
|
('is_active', models.BooleanField(default=True)),
|
||
|
('is_staff', models.BooleanField(default=False)),
|
||
|
('is_superuser', models.BooleanField(default=False)),
|
||
|
],
|
||
|
options={
|
||
|
'db_table': 'login',
|
||
|
},
|
||
|
),
|
||
|
]
|