Skip to content

Commit

Permalink
SQL korrigiert - refs #10
Browse files Browse the repository at this point in the history
  • Loading branch information
lieblerm committed Dec 5, 2022
1 parent 9737668 commit 599616a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion admin/com_stations/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `#__stations_destinations` (
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`txt` text NOT NULL DEFAULT '',
`txt` text NOT NULL,
`picture` varchar(255) NOT NULL DEFAULT '',
`assign_routeplanning` tinyint(1) NOT NULL DEFAULT 1,
`ordering` int(11) NOT NULL DEFAULT 0,
Expand Down
1 change: 0 additions & 1 deletion admin/com_stations/sql/updates/mysql/3.3.3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ALTER TABLE `#__stations_destinations` CHANGE `www` `www` VARCHAR(100) NOT NULL
ALTER TABLE `#__stations_destinations` CHANGE `livestream` `livestream` VARCHAR(100) NOT NULL DEFAULT '';
ALTER TABLE `#__stations_destinations` CHANGE `lat` `lat` VARCHAR(200) NOT NULL DEFAULT '';
ALTER TABLE `#__stations_destinations` CHANGE `long` `long` VARCHAR(200) NOT NULL DEFAULT '';
ALTER TABLE `#__stations_destinations` CHANGE `txt` `txt` TEXT NOT NULL DEFAULT '';
ALTER TABLE `#__stations_destinations` CHANGE `country` `country` INT(11) NOT NULL DEFAULT '33';
ALTER TABLE `#__stations_destinations` CHANGE `access` `access` INT(11) NOT NULL DEFAULT '0';
ALTER TABLE `#__stations_destinations` CHANGE `language` `language` VARCHAR(7) NOT NULL DEFAULT '';
Expand Down

0 comments on commit 599616a

Please sign in to comment.