Changeset 5755 in subversion
- Timestamp:
- Jan 12, 2012 2:16:51 AM (16 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
SQL/mysql.initial.sql (modified) (1 diff)
-
SQL/mysql.update.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r5754 r5755 2 2 =========================== 3 3 4 - Fix failure on MySQL database upgrade from 0.7 - text column can't have default value (#1488300) 4 5 - Added address book widget on compose screen 5 6 - Use proper timezones from PHP's internal timezonedb (#1485592) -
trunk/roundcubemail/SQL/mysql.initial.sql
r5711 r5755 102 102 `del` tinyint(1) NOT NULL DEFAULT '0', 103 103 `name` varchar(128) NOT NULL DEFAULT '', 104 `email` text NOT NULL DEFAULT '',104 `email` text NOT NULL, 105 105 `firstname` varchar(128) NOT NULL DEFAULT '', 106 106 `surname` varchar(128) NOT NULL DEFAULT '', -
trunk/roundcubemail/SQL/mysql.update.sql
r5753 r5755 224 224 ALTER TABLE `contacts` DROP FOREIGN KEY `user_id_fk_contacts`; 225 225 ALTER TABLE `contacts` DROP INDEX `user_contacts_index`; 226 ALTER TABLE `contacts` MODIFY `email` text NOT NULL DEFAULT '';226 ALTER TABLE `contacts` MODIFY `email` text NOT NULL; 227 227 ALTER TABLE `contacts` ADD INDEX `user_contacts_index` (`user_id`,`del`); 228 228 ALTER TABLE `contacts` ADD CONSTRAINT `user_id_fk_contacts` FOREIGN KEY (`user_id`)
Note: See TracChangeset
for help on using the changeset viewer.
