diff --git a/src/entity/gateway/postgres/migrations/V0007__player_keyconfig.sql b/src/entity/gateway/postgres/migrations/V0007__player_keyconfig.sql new file mode 100644 index 0000000..23067d5 --- /dev/null +++ b/src/entity/gateway/postgres/migrations/V0007__player_keyconfig.sql @@ -0,0 +1,3 @@ +alter table player_character + add keyboard_config bytea not null, + add gamepad_config bytea not null; diff --git a/src/entity/gateway/postgres/migrations/V0008__playtime_not_null.sql b/src/entity/gateway/postgres/migrations/V0008__playtime_not_null.sql new file mode 100644 index 0000000..60e689b --- /dev/null +++ b/src/entity/gateway/postgres/migrations/V0008__playtime_not_null.sql @@ -0,0 +1,5 @@ +alter table player_character + drop column playtime; + +alter table player_character + add playtime integer not null;