mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
7 lines
184 B
SQL
7 lines
184 B
SQL
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
|
|
);
|