pokken: readd mysql_charset to profile and pokemon data

This commit is contained in:
2024-06-13 14:14:07 -04:00
parent e21568cfd9
commit ee7d5c4e21
3 changed files with 146 additions and 1 deletions

View File

@ -61,7 +61,7 @@ profile = Table(
Column("navi_trainer", Integer),
Column("navi_version_id", Integer),
Column("aid_skill_list", JSON), # Repeated, Integer
Column("aid_skill", Integer),
Column("aid_skill", Integer), # Cheer skill, 6 of them, unlocked by lucky bonus
Column("comment_text_id", Integer),
Column("comment_word_id", Integer),
Column("latest_use_pokemon", Integer),
@ -100,6 +100,7 @@ profile = Table(
Column("battle_num_vs_cpu", Integer), # 2
Column("win_cpu", Integer),
Column("battle_num_tutorial", Integer), # 1?
mysql_charset="utf8mb4"
)
pokemon_data = Table(
@ -123,6 +124,7 @@ pokemon_data = Table(
Column("bp_point_def", Integer),
Column("bp_point_sp", Integer),
UniqueConstraint("user", "illustration_book_no", name="pokken_pokemon_uk"),
mysql_charset="utf8mb4"
)