implement lineup send to gamechanger
This commit is contained in:
22
gamechanger/migrations/0003_player.py
Normal file
22
gamechanger/migrations/0003_player.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-08 12:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('gamechanger', '0002_auto_20220607_1259'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Player',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('teamsnap_member_id', models.IntegerField()),
|
||||
('fname', models.CharField(max_length=30)),
|
||||
('lname', models.CharField(max_length=30)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user