DROP TABLE IF EXISTS `#__jce_groups`;
CREATE TABLE `#__jce_groups` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `users` text NOT NULL,
  `types` varchar(255) NOT NULL,
  `rows` text NOT NULL,
  `plugins` varchar(255) NOT NULL,
  `published` tinyint(3) NOT NULL,
  `ordering` int(11) NOT NULL,
  `checked_out` tinyint(3) NOT NULL,
  `checked_out_time` datetime NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM CHARACTER SET `utf8`;

--
-- Dumping data for table `#__jce_groups`
--

INSERT INTO `#__jce_groups` (`id`, `name`, `description`, `users`, `types`, `rows`, `plugins`, `published`, `ordering`, `checked_out`, `checked_out_time`, `params`) VALUES
(1, 'Défaut', 'Groupe par défaut pour les niveaux Auteur et supérieurs', '', '19,20,21,23,24,25', '28,32,33,27,19,20,21,30,31,36,37,29,43,44,45,46,49,26;2,34,39,40,42,38,5,9,15,23,48,47,56,41;22,18,25,24,7,10,11,12;4,8,6,17,13,3,54,14,16,59', '52,55,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,28,54,59', 1, 1, 0, '0000-00-00 00:00:00', '');
