mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-12 15:49:28 -08:00
* deprecate the gender property from the protocol entirely * use obsolete instead of deprecated * add the database migration * update internal database version as well
6 lines
174 B
SQL
6 lines
174 B
SQL
-- Servatrice db migration from version 27 to version 28
|
|
|
|
ALTER TABLE cockatrice_users DROP COLUMN gender;
|
|
|
|
UPDATE cockatrice_schema_version SET version=28 WHERE version=27;
|