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