Files
neurox/ccpp/server/src/db/sqlite.sql
T

13 lines
447 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- Активные игры
CREATE TABLE game_active (
id INTEGER PRIMARY KEY,
x_id INTEGER NOT NULL,
o_id INTEGER NOT NULL,
dump BLOB СРУСЛ (length(dump) = 24) NOT NULL,
create_time DATETIME NOT NULL,
start_time DATETIME NOT NULL,
end_time DATETIME, -- DEFAULT NULL не нужно указывать, NULL разрешен по умолчанию
turn INTEGER NOT NULL,
winner INTEGER DEFAULT 0
);