Pokemon_server / databases /schemas /chat-plugins.sql
Jofthomas's picture
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
332 Bytes
-- Database schema for chat plugins
-- As per the design outlined at https://gist.github.com/AnnikaCodes/afa36fc8b17791be812eebbb22182426,
-- each table should be prefixed by the plugin name.
CREATE TABLE db_info (
key TEXT NOT NULL,
value TEXT NOT NULL,
PRIMARY KEY (key)
);
INSERT INTO db_info VALUES ('version', '1');