1
|
/*
|
2
|
* Alter the systemmetadata* table names for Oracle length restrictions
|
3
|
* NOTE: we cannot actually perform this since the tables could
|
4
|
* never be created when 2.0.0 was first released. Oracle users of Metacat 1.x
|
5
|
* will have run through an updated 2.0.0 script that creates the correct table names
|
6
|
* for use in 2.0.5. So, we do nothing here for Oracle deployments.
|
7
|
*/
|
8
|
|
9
|
|
10
|
/*
|
11
|
* update the database version
|
12
|
*/
|
13
|
UPDATE db_version SET status=0;
|
14
|
|
15
|
INSERT INTO db_version (version, status, date_created)
|
16
|
VALUES ('2.0.5', 1, CURRENT_DATE);
|