diff --git a/admin/com_stations/sql/install.mysql.utf8.sql b/admin/com_stations/sql/install.mysql.utf8.sql index 485736f..c904ee8 100644 --- a/admin/com_stations/sql/install.mysql.utf8.sql +++ b/admin/com_stations/sql/install.mysql.utf8.sql @@ -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, diff --git a/admin/com_stations/sql/updates/mysql/3.3.3.sql b/admin/com_stations/sql/updates/mysql/3.3.3.sql index 7814034..9e6b887 100644 --- a/admin/com_stations/sql/updates/mysql/3.3.3.sql +++ b/admin/com_stations/sql/updates/mysql/3.3.3.sql @@ -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 '';