summaryrefslogtreecommitdiffstats
path: root/database/sqlite/sql-schema-delta-2.sql
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2013-03-04 11:57:32 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2013-03-04 11:57:32 +0100
commite121092323ad2b3e0966da4f12b1636458715efb (patch)
tree7aaa79dcc5c664d460afbb74a8f592ab488497c1 /database/sqlite/sql-schema-delta-2.sql
parent5da59efc978fce7b4da71dc967a22647721f78af (diff)
downloadeurephia-e121092323ad2b3e0966da4f12b1636458715efb.tar.gz
eurephia-e121092323ad2b3e0966da4f12b1636458715efb.tar.xz
eurephia-e121092323ad2b3e0966da4f12b1636458715efb.zip
sqlite: Modified eDBget_plugins() to support the new interface for plug-in init
This is needed to provide config data to a configured plug-in when it is loaded and initialised. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to 'database/sqlite/sql-schema-delta-2.sql')
-rw-r--r--database/sqlite/sql-schema-delta-2.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/database/sqlite/sql-schema-delta-2.sql b/database/sqlite/sql-schema-delta-2.sql
index f767a5d..b21899d 100644
--- a/database/sqlite/sql-schema-delta-2.sql
+++ b/database/sqlite/sql-schema-delta-2.sql
@@ -28,6 +28,7 @@ CREATE TABLE eurephia_plugins (
plgname varchar(32) NOT NULL, -- short name of the plug-in module
plgtype varchar(16) NOT NULL, -- plug-in type (auth, firewall, etc)
plgdsofile text NOT NULL, -- full path to the plug-in DSO file
+ plgconfig text , -- Optional config data for the plug-in
plgenabled boolean NOT NULL, -- Enable/disable the plug-in
plgid integer PRIMARY KEY AUTOINCREMENT
);