You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
722 B
22 lines
722 B
# Generated by Django 2.0.7 on 2019-01-25 08:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('user', '0028_auto_20181214_0107'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='EmailLog',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('email', models.EmailField(max_length=254, verbose_name='email address')),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('source', models.PositiveSmallIntegerField(choices=[(1, 'Пробный урок')])),
|
|
],
|
|
),
|
|
]
|
|
|