From 99f904adcc37d93c90defcd8ce898598e25be212 Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Wed, 11 Mar 2015 16:55:04 +0100 Subject: Lot of plugins --- plugin_manager/SQL/pgsql.initial.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 plugin_manager/SQL/pgsql.initial.sql (limited to 'plugin_manager/SQL/pgsql.initial.sql') diff --git a/plugin_manager/SQL/pgsql.initial.sql b/plugin_manager/SQL/pgsql.initial.sql new file mode 100644 index 0000000..5fa498b --- /dev/null +++ b/plugin_manager/SQL/pgsql.initial.sql @@ -0,0 +1,17 @@ +CREATE TABLE plugin_manager ( + id serial NOT NULL, + user_id integer NOT NULL + REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE, + conf text NOT NULL, + value text, + type text, + PRIMARY KEY (id) +); +CREATE INDEX ix_plugin_manager_user_id ON users (user_id); + +CREATE TABLE IF NOT EXISTS "system" ( + name varchar(64) NOT NULL PRIMARY KEY, + value text +); + +INSERT INTO "system" (name, value) VALUES ('myrc_plugin_manager', 'initial'); \ No newline at end of file -- cgit v1.2.3