|
| 1 | +-- |
| 2 | +-- Tabellenstruktur für Tabelle `#__sportsmanagement_playground_details` |
| 3 | +-- |
| 4 | +CREATE TABLE `#__sportsmanagement_playground_details` ( |
| 5 | + `id` INT(11) NOT NULL AUTO_INCREMENT , |
| 6 | + `playground_id` int(11) NOT NULL DEFAULT 0, |
| 7 | + `date_von` date NOT NULL DEFAULT '0000-00-00', |
| 8 | + `date_bis` date NOT NULL DEFAULT '0000-00-00', |
| 9 | + `name_visitors` enum('NAME','VISITORS') NOT NULL DEFAULT 'VISITORS', |
| 10 | + `notes` varchar(255) DEFAULT NULL, |
| 11 | + `max_visitors` int(11) NOT NULL DEFAULT 0, |
| 12 | + `picture` varchar(255) DEFAULT NULL, |
| 13 | + `ordering` int(11) NOT NULL DEFAULT 0, |
| 14 | + `checked_out` int(11) NOT NULL DEFAULT 0, |
| 15 | + `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
| 16 | + `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
| 17 | + `modified_by` int(11) DEFAULT NULL, |
| 18 | + `published` tinyint(1) NOT NULL DEFAULT 1, |
| 19 | + `cr_picture` varchar(255) DEFAULT NULL, |
| 20 | + `timestamp_von` bigint(20) NOT NULL DEFAULT 0, |
| 21 | + `timestamp_bis` bigint(20) NOT NULL DEFAULT 0, |
| 22 | + PRIMARY KEY (`id`), |
| 23 | + UNIQUE KEY `history` (`playground_id`,`date_von`,`date_bis`,`name_visitors`) |
| 24 | +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
1 | 25 |
|
| 26 | + |
| 27 | + |
| 28 | +-- |
| 29 | +-- Tabellenstruktur für Tabelle `#__sportsmanagement_club_logos` |
| 30 | +-- |
| 31 | +CREATE TABLE `#__sportsmanagement_club_logos` ( |
| 32 | + `id` INT(11) NOT NULL AUTO_INCREMENT , |
| 33 | + `club_id` int(11) NOT NULL DEFAULT 0, |
| 34 | + `season_id` int(11) NOT NULL DEFAULT 1, |
| 35 | + `logo_big` varchar(255) DEFAULT NULL, |
| 36 | + `ordering` int(11) NOT NULL DEFAULT 0, |
| 37 | + `checked_out` int(11) NOT NULL DEFAULT 0, |
| 38 | + `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
| 39 | + `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
| 40 | + `modified_by` int(11) DEFAULT NULL, |
| 41 | + `published` tinyint(1) NOT NULL DEFAULT 1, |
| 42 | + PRIMARY KEY (`id`), |
| 43 | + UNIQUE KEY `clubseason` (`club_id`,`season_id`) |
| 44 | +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
0 commit comments