22 lines
613 B
Python
22 lines
613 B
Python
|
# Generated by Django 4.0.6 on 2022-07-09 15:20
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0002_alter_plan_product_id_alter_user_email'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Session',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('email', models.EmailField(max_length=254, unique=True)),
|
||
|
('session', models.CharField(max_length=255)),
|
||
|
],
|
||
|
),
|
||
|
]
|