mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-26 05:10:21 +00:00
17 lines
355 B
Python
17 lines
355 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),
|
||
|
),
|
||
|
]
|