20220909_1_create_chat_history.sql
-- Create table and grant freeoriond server to read from it and write new messages
CREATE TABLE IF NOT EXISTS chat_history(
ts TIMESTAMP WITHOUT TIME ZONE NOT NULL,
player_name VARCHAR(100) NULL,
text TEXT NOT NULL,
text_color BIGINT NULL
);
GRANT SELECT, INSERT ON chat_history TO freeorion;