Spaces:
Running
Running
File size: 184 Bytes
5c2ed06 |
1 2 3 4 5 6 7 |
CREATE TABLE stored_battles (
roomid TEXT NOT NULL PRIMARY KEY, -- can store both the num and the formatid
input_log TEXT NOT NULL,
players TEXT[] NOT NULL,
title TEXT NOT NULL
);
|