![]() |
Update from v2.0.2 to v3.4.0RC4 - Printable Version +- LetoDMS Community Forum (https://community.letodms.com) +-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4) +--- Forum: General Questions (https://community.letodms.com/forumdisplay.php?fid=15) +--- Thread: Update from v2.0.2 to v3.4.0RC4 (/showthread.php?tid=594) |
RE: Update from v2.0.2 to v3.4.0RC4 - steinm - 12-10-2012 (12-09-2012, 07:53 PM)John_k22 Wrote:(12-05-2012, 02:35 AM)John_k22 Wrote:Hi Uwe, can you please give me an advise how I should go on with this problem?(12-04-2012, 01:38 PM)steinm Wrote: tblDirPath (and tblPathList) are obsolete, Do the other tables work? Can you give me the output of show create table tblDocumentContent; in your mysql console? Uwe RE: Update from v2.0.2 to v3.4.0RC4 - John_k22 - 12-10-2012 Hi, the outbut is: Code: SQL-Abfrageergebnis RE: Update from v2.0.2 to v3.4.0RC4 - steinm - 12-11-2012 (12-10-2012, 11:34 PM)John_k22 Wrote: Hi, the outbut is: Try this alter table tblDocumentContent change version version smallint(5); alter table tblDocumentContent drop primary key; alter table tblDocumentContent add unique index (`document`, `version`); alter table tblDocumentContent engine=innodb; This should make the table upgradable for 3.4.0 Uwe RE: Update from v2.0.2 to v3.4.0RC4 - John_k22 - 12-11-2012 great, tblDocumentContent is now innoDB without any error ![]() Should I do the same with tblDirPath ? Or just leave it on myisam? All tables language is latin1_swedish_ci. Should I change them to utf8_general_ci? John RE: Update from v2.0.2 to v3.4.0RC4 - steinm - 12-11-2012 (12-11-2012, 03:25 AM)John_k22 Wrote: great, tblDocumentContent is now innoDB without any error No need to care about tblDirPath. Setting the collation to utf8_general_ci isn't crucial but is in general a good idea. Uwe RE: Update from v2.0.2 to v3.4.0RC4 - John_k22 - 12-12-2012 ok, thanks Uwe ![]() |