Spaces:
Running
Running
File size: 332 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 |
-- 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');
|