add BenchCoach user/profile

This commit is contained in:
2021-12-13 07:25:39 -06:00
parent f19a9ee67d
commit 7378fe1750
14 changed files with 235 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
# 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)),
],
),
]