summaryrefslogtreecommitdiffstats
path: root/database/sqlite/sql-schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'database/sqlite/sql-schema.sql')
-rw-r--r--database/sqlite/sql-schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/database/sqlite/sql-schema.sql b/database/sqlite/sql-schema.sql
index 2e21605..899c95b 100644
--- a/database/sqlite/sql-schema.sql
+++ b/database/sqlite/sql-schema.sql
@@ -25,6 +25,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
);