Project

General

Profile

« Previous | Next » 

Revision 8979

add 2.4.2 upgrade scripts so they are available in the 2.5.0 release as well

View differences:

src/upgrade-db-to-2.4.2-oracle.sql
1

  
2
/*
3
 * update the database version
4
 */
5
UPDATE db_version SET status=0;
6

  
7
INSERT INTO db_version (version, status, date_created) 
8
  VALUES ('2.4.2', 1, CURRENT_DATE);
0 9

  
src/upgrade-db-to-2.4.2-postgres.sql
1

  
2
/*
3
 * update the database version
4
 */
5
UPDATE db_version SET status=0;
6

  
7
INSERT INTO db_version (version, status, date_created) 
8
  VALUES ('2.4.2', 1, CURRENT_DATE);
0 9

  

Also available in: Unified diff