mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-02 19:43:55 -07:00
Implementation of websockets in servatrice and test js client
This commit is contained in:
parent
e81a6d497b
commit
5b21dc8cde
42 changed files with 39592 additions and 287 deletions
6
servatrice/migrations/servatrice_0013_to_0014.sql
Normal file
6
servatrice/migrations/servatrice_0013_to_0014.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
-- Servatrice db migration from version 13 to version 14
|
||||
|
||||
alter table cockatrice_sessions add `connection_type` ENUM('tcp', 'websocket');
|
||||
UPDATE cockatrice_sessions SET connection_type = 'tcp';
|
||||
|
||||
UPDATE cockatrice_schema_version SET version=14 WHERE version=13;
|
||||
Loading…
Add table
Add a link
Reference in a new issue