Django migrations
This commit is contained in:
parent
d634702504
commit
584cd18eb8
|
@ -22,5 +22,4 @@ npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
migrations/
|
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
# Generated by Django 2.2.12 on 2020-05-11 05:03
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
initial = True
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Game',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('name', models.CharField(max_length=100)),
|
||||||
|
('index', models.CharField(max_length=100)),
|
||||||
|
('agent0', models.CharField(max_length=100)),
|
||||||
|
('agent1', models.CharField(max_length=100)),
|
||||||
|
('win', models.BooleanField()),
|
||||||
|
('payoff', models.FloatField()),
|
||||||
|
('replay', models.TextField(blank=True)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Payoff',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('name', models.CharField(max_length=100)),
|
||||||
|
('agent0', models.CharField(max_length=100)),
|
||||||
|
('agent1', models.CharField(max_length=100)),
|
||||||
|
('payoff', models.FloatField()),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
]
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue