mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 06:04:18 +00:00
15 lines
354 B
Python
15 lines
354 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("pokemon_v2", "0004_iso639length_20191217"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="pokemonsprites",
|
|
name="sprites",
|
|
field=models.CharField(max_length=20000),
|
|
),
|
|
]
|