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,20 @@
# Generated by Django 3.2.6 on 2021-12-12 23:37
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('teamsnap', '0016_auto_20211212_2240'),
('benchcoach', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='user',
name='teamsnap_user',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='teamsnap.user'),
),
]