Adding migration script to remove the 'upgrade.url' parameter from the 2.2 codebase

This commit is contained in:
abhishek 2010-08-31 09:39:31 -07:00
parent 7882d2ad59
commit 25ac9104bb
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
--data upgrade from 21 to 22
use cloud;
START TRANSACTION;
DELETE FROM configuration where name='upgrade.url';
COMMIT;