From 25b62941b64544c40e4550dd118916fef491c2e3 Mon Sep 17 00:00:00 2001 From: steinm Date: Mon, 6 Dec 2010 08:22:17 +0000 Subject: [PATCH] - replaced fields isAdmin and isGuest in tblUsers by field role --- create_tables.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/create_tables.sql b/create_tables.sql index 5c9dd546c..ebb849e1d 100644 --- a/create_tables.sql +++ b/create_tables.sql @@ -327,8 +327,7 @@ CREATE TABLE `tblUsers` ( `language` varchar(32) NOT NULL, `theme` varchar(32) NOT NULL, `comment` text NOT NULL, - `isAdmin` smallint(1) NOT NULL default '0', - `isGuest` smallint(1) NOT NULL default '0', + `role` smallint(1) NOT NULL default '0', `hidden` smallint(1) NOT NULL default '0', PRIMARY KEY (`id`) ) ;