mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 03:13:06 +00:00
Formatting
This commit is contained in:
parent
60b3e6aa4d
commit
d13b2f3b7d
2 changed files with 12 additions and 20 deletions
|
@ -1,18 +0,0 @@
|
|||
# Generated by Django 2.1.11 on 2020-08-09 19:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("pokemon_v2", "0005_auto_20200709_1930"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="pokemonspecies",
|
||||
name="is_legendary",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
|
@ -1,15 +1,25 @@
|
|||
# Generated by Django 2.1.11 on 2020-08-09 19:28
|
||||
# Generated by Django 2.1.11 on 2020-08-09 23:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
replaces = [
|
||||
("pokemon_v2", "0006_pokemonspecies_is_legendary"),
|
||||
("pokemon_v2", "0007_auto_20200809_2028"),
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
("pokemon_v2", "0005_auto_20200709_1930"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="pokemonspecies",
|
||||
name="is_legendary",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="pokemonspecies",
|
||||
name="is_mythical",
|
Loading…
Reference in a new issue