Commit 878344bb7a2a3a165caa669a45f4a3ed3f493699

Authored by kevin_fourie
1 parent e90d240a

KTC-173

"The Title of the RSS feed seems to be limited to 20 characters and names longer than that is cut-short."
Updated. Added item to upgrades table.

Committed By: Kevin Fourie
Reviewed By: Jonathan Byrne

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/trunk@8204 c91229c3-7414-0410-bfa2-8a42b809f60b
sql/mysql/install/structure.sql
... ... @@ -1219,7 +1219,7 @@ CREATE TABLE `plugin_rss` (
1219 1219 `id` int(11) NOT NULL,
1220 1220 `user_id` int(11) NOT NULL,
1221 1221 `url` varchar(200) NOT NULL,
1222   - `title` varchar(20) NOT NULL,
  1222 + `title` varchar(100) NOT NULL,
1223 1223 PRIMARY KEY (`id`),
1224 1224 KEY `user_id` (`user_id`),
1225 1225 CONSTRAINT `plugin_rss_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
... ...
sql/mysql/upgrade/3.5.2/rss_plugin_title.sql 0 → 100644
  1 +alter table plugin_rss change title title varchar(100) NOT NULL;
0 2 \ No newline at end of file
... ...