mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
1de94a9979
* Added "migration of migrations" to transfer the data from the __diesel_schema_migrations table to the refinery_schema_history table * Removed all down migrations as refinery does not support down migrations * Changed all diesel up migrations to refinery naming format * Added --sql-log-mode parameter to veloren-server-cli to allow SQL tracing and profiling * Added /disconnect_all_players admin command * Added disconnectall CLI command * Fixes for several potential persistence-related race conditions
6 lines
150 B
SQL
6 lines
150 B
SQL
CREATE TABLE IF NOT EXISTS "character" (
|
|
id INTEGER NOT NULL PRIMARY KEY,
|
|
player_uuid TEXT NOT NULL,
|
|
alias TEXT NOT NULL,
|
|
tool TEXT
|
|
); |