Author Topic: Update from 0.2-beta to 0.2-stable  (Read 3134 times)

Offline planetworld

  • Newbie
  • *
  • Posts: 1
Update from 0.2-beta to 0.2-stable
« on: January 13, 2009, 03:51:30 PM »
Hi

i would like upgrade to the latest version "stable" but in the UPGRADING guide i've just found istructions for update from 0.1-xx and 0.2-alpha, nothing about 0.2-beta.
Is possible switch to 0.2-stable from 0.2-beta?

thanks a lot

regards

Offline rosali

  • Hero Member
  • *****
  • Posts: 2,533
Update from 0.2-beta to 0.2-stable
« Reply #1 on: January 14, 2009, 01:10:49 AM »
You have to adjust the database:

./SQL/[mysql].update.sql ... snippet ...

Code: [Select]

-- Updates from version 0.2-beta (InnoDB only)

ALTER TABLE `cache`
    DROP `session_id`;
   
ALTER TABLE `session`
    ADD INDEX `changed_index` (`changed`);

ALTER TABLE `cache`
    ADD INDEX `created_index` (`created`);

ALTER TABLE `users`
    CHANGE `language` `language` varchar(5);
Regards,
Rosali
__________________
MyRoundcube Project (commercial)

Offline Henning

  • Newbie
  • *
  • Posts: 3
Update from 0.2-beta to 0.2-stable
« Reply #2 on: January 25, 2009, 05:49:19 PM »
hmmm..........