aboutsummaryrefslogtreecommitdiff
path: root/engine/schema/mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'engine/schema/mysql.sql')
-rw-r--r--engine/schema/mysql.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql
index b4cb6ebf2..874720f3d 100644
--- a/engine/schema/mysql.sql
+++ b/engine/schema/mysql.sql
@@ -248,3 +248,9 @@ CREATE TABLE `prefix_system_log` (
PRIMARY KEY (`id`)
);
+-- Privileged paths, added to by the admin panel
+CREATE TABLE `prefix_privileged_paths` (
+ `path` varchar(128) NOT NULL,
+
+ PRIMARY KEY (`path`)
+);