WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
-- Tabellenstruktur für Tabelle `wb_mod_employees`--DROP TABLE IF EXISTS `wb_mod_employees`;CREATE TABLE IF NOT EXISTS `wb_mod_employees` ( `emp_id` int(11) NOT NULL AUTO_INCREMENT, `section_id` int(11) NOT NULL DEFAULT '0', `page_id` int(11) NOT NULL DEFAULT '0', `dep_id` int(11) NOT NULL DEFAULT '0',... `posted_by` int(11) NOT NULL DEFAULT '0', `modified_when` int(11) NOT NULL DEFAULT '0', `modified_by` int(11) NOT NULL DEFAULT '0', `moderated` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`emp_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;-- ------------------------------------------------------------ Tabellenstruktur für Tabelle `wb_mod_employees_departments`--DROP TABLE IF EXISTS `wb_mod_employees_departments`;CREATE TABLE IF NOT EXISTS `wb_mod_employees_departments` ( `dep_id` int(11) NOT NULL AUTO_INCREMENT, `section_id` int(11) NOT NULL DEFAULT '0', `page_id` int(11) NOT NULL DEFAULT '0', `active` int(11) NOT NULL DEFAULT '0', `position` int(11) NOT NULL DEFAULT '0', `department` varchar(150) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`dep_id`), UNIQUE KEY `ident_news` (`section_id`,`department`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;---- Tabellenstruktur für Tabelle `wb_mod_employees_settings`--DROP TABLE IF EXISTS `wb_mod_employees_settings`;CREATE TABLE IF NOT EXISTS `wb_mod_employees_settings` (....
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_employees`;CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_employees` ( `emp_id` int(11) NOT NULL AUTO_INCREMENT, `section_id` int(11) NOT NULL DEFAULT '0', `page_id` int(11) NOT NULL DEFAULT '0', `dep_id` int(11) NOT NULL DEFAULT '0',.... `posted_by` int(11) NOT NULL DEFAULT '0', `modified_when` int(11) NOT NULL DEFAULT '0', `modified_by` int(11) NOT NULL DEFAULT '0', `moderated` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`emp_id`)){TABLE_ENGINE=MyISAM};-- ------------------------------------------------------------ Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_employees`_departments`--DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_employees`_departments`;CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_employees`_departments` ( `dep_id` int(11) NOT NULL AUTO_INCREMENT, `section_id` int(11) NOT NULL DEFAULT '0', `page_id` int(11) NOT NULL DEFAULT '0', `active` int(11) NOT NULL DEFAULT '0', `position` int(11) NOT NULL DEFAULT '0', `department` varchar(150){FIELD_COLLATION} NOT NULL DEFAULT '', PRIMARY KEY (`dep_id`), UNIQUE KEY `ident_news` (`section_id`,`department`)){TABLE_ENGINE=MyISAM};-- ---------------------------------------------------------- Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_employees`_settings`--DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_employees`_settings`;....
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_beispiel_groups`;CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_beispiel_groups` ( `group_id` INT(11) NOT NULL AUTO_INCREMENT, `section_id` INT(11) NOT NULL DEFAULT '0', `group_name` VARCHAR(230){FIELD_COLLATION} NOT NULL DEFAULT '', `group_desc` TEXT{FIELD_COLLATION} NOT NULL, PRIMARY KEY (`group_id`)){TABLE_ENGINE};