oh forgot to add these migrations

This commit is contained in:
jake 2023-01-29 15:32:09 -07:00
parent 58da1f87f6
commit f80e37c438
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,3 @@
alter table player_character
add keyboard_config bytea not null,
add gamepad_config bytea not null;

View File

@ -0,0 +1,5 @@
alter table player_character
drop column playtime;
alter table player_character
add playtime integer not null;