Changeset 6680

Show
Ignore:
Timestamp:
10/02/08 10:52:41 (2 months ago)
Author:
dduponchelle
Message:

SQL Script updated to introduce new feature (ACL Actions Access).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/centreon/www/install/createTables.sql

    r6646 r6680  
    194194  KEY `acl_topo_id` (`acl_topo_id`) 
    195195) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; 
     196 
     197-- -------------------------------------------------------- 
     198 
     199--  
     200-- Structure de la table `acl_actions` 
     201--  
     202 
     203CREATE TABLE `acl_actions` ( 
     204  `acl_action_id` int(11) NOT NULL auto_increment, 
     205  `acl_action_name` varchar(255) default NULL, 
     206  `acl_action_description` varchar(255) default NULL, 
     207  `acl_action_activate` enum('0','1','2') default NULL, 
     208  PRIMARY KEY  (`acl_action_id`) 
     209) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; 
     210 
     211-- -------------------------------------------------------- 
     212 
     213--  
     214-- Structure de la table `acl_actions_rules` 
     215--  
     216 
     217CREATE TABLE `acl_actions_rules` ( 
     218  `aar_id` int(11) NOT NULL auto_increment, 
     219  `acl_action_rule_id` int(11) default NULL, 
     220  `acl_action_name` varchar(255) default NULL, 
     221  PRIMARY KEY  (`aar_id`) 
     222) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; 
     223 
     224-- -------------------------------------------------------- 
     225 
     226--  
     227-- Structure de la table `acl_group_actions_relations` 
     228--  
     229 
     230CREATE TABLE `acl_group_actions_relations` ( 
     231  `agar_id` int(11) NOT NULL auto_increment, 
     232  `acl_action_id` int(11) default NULL, 
     233  `acl_group_id` int(11) default NULL, 
     234  PRIMARY KEY  (`agar_id`), 
     235  KEY `acl_action_id` (`acl_action_id`), 
     236  KEY `acl_group_id` (`acl_group_id`) 
     237) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; 
    196238 
    197239-- --------------------------------------------------------