Files
benchcoach-django/benchcoach/migrations/0001_initial.py
2021-12-13 07:35:01 -06:00

25 lines
727 B
Python

# Generated by Django 3.2.6 on 2021-12-12 23:36
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='User',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('first_name', models.CharField(max_length=50, null=True)),
('last_name', models.CharField(max_length=50, null=True)),
('email', models.EmailField(max_length=254)),
('teamsnap_access_token', models.CharField(max_length=50, null=True)),
],
),
]