Skip to content

Commit

Permalink
changed debug to False and added migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Kudzayi committed Nov 17, 2024
1 parent 06580b3 commit 7121530
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Generated by Django 4.1.7 on 2024-11-17 22:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("nba_stats", "0005_playerbio_date"),
]

operations = [
migrations.AddField(
model_name="playerbio",
name="BLK",
field=models.FloatField(blank=True, default=0),
),
migrations.AddField(
model_name="playerbio",
name="STL",
field=models.FloatField(blank=True, default=0),
),
migrations.AlterField(
model_name="playerbio",
name="AST",
field=models.FloatField(blank=True, default=0),
),
migrations.AlterField(
model_name="playerbio",
name="PTS",
field=models.FloatField(blank=True, default=0),
),
migrations.AlterField(
model_name="playerbio",
name="REB",
field=models.FloatField(blank=True, default=0),
),
]
17 changes: 17 additions & 0 deletions nba_stats/migrations/0007_remove_playerbio_date.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.7 on 2024-11-17 23:14

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("nba_stats", "0006_playerbio_blk_playerbio_stl_alter_playerbio_ast_and_more"),
]

operations = [
migrations.RemoveField(
model_name="playerbio",
name="date",
),
]

0 comments on commit 7121530

Please sign in to comment.