From 1bd0e2d351511ed5674bbc292364fd614f7d5fb4 Mon Sep 17 00:00:00 2001 From: seek3r Date: Fri, 24 Nov 2000 09:41:38 +0000 Subject: [PATCH] added first parts of the acl code --- setup/sql/mysql_newtables.inc.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup/sql/mysql_newtables.inc.php b/setup/sql/mysql_newtables.inc.php index 1b33cd725e..a2813aa278 100644 --- a/setup/sql/mysql_newtables.inc.php +++ b/setup/sql/mysql_newtables.inc.php @@ -75,6 +75,15 @@ )"; $db->query($sql); + $sql = "CREATE TABLE acl ( + acl_appname varchar(50) NOT NULL, + acl_location varchar(255), + acl_account varchar(50), + acl_account_type varchar(15), + acl_rights int + )"; +// $db->query($sql); + $sql = "CREATE TABLE app_sessions ( sessionid varchar(255) NOT NULL, loginid varchar(20),