Pokemon_server / databases /schemas /stored-battles.sql
Jofthomas's picture
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
184 Bytes
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
);