Browse Source

oh forgot to add these migrations

pull/127/head
jake 1 year ago
parent
commit
f80e37c438
  1. 3
      src/entity/gateway/postgres/migrations/V0007__player_keyconfig.sql
  2. 5
      src/entity/gateway/postgres/migrations/V0008__playtime_not_null.sql

3
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;

5
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;
Loading…
Cancel
Save