mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-12 07:40:30 -08:00
* Update sessions table columns for consistency Fix #2276 This update changes two columns in the sessions table to match the column declartations in the users table. * Update servatrice.sql Update servatrice.sql to reflect new db schema version
7 lines
287 B
SQL
7 lines
287 B
SQL
-- Servatrice db migration from version 18 to version 19
|
|
|
|
alter table cockatrice_sessions modify column `user_name` varchar(35) NOT NULL;
|
|
alter table cockatrice_sessions modify column `ip_address` varchar(255) NOT NULL;
|
|
|
|
UPDATE cockatrice_schema_version SET version=19 WHERE version=18;
|