mirror of
https://github.com/PokeAPI/pokeapi
synced 2025-02-16 12:38:25 +00:00
add migration
This commit is contained in:
parent
bf02891d1e
commit
47044317e4
1 changed files with 26 additions and 0 deletions
26
pokemon_v2/migrations/0006_auto_20200725_2205.py
Normal file
26
pokemon_v2/migrations/0006_auto_20200725_2205.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("pokemon_v2", "0005_auto_20200709_1930"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="pokemon",
|
||||
name="height",
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="pokemon",
|
||||
name="weight",
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="pokemon",
|
||||
name="base_experience",
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Reference in a new issue