Revision 6024
Added by ben leinfelder over 13 years ago
src/upgrade-db-to-1.10.0-postgres.sql | ||
---|---|---|
1 |
DROP TABLE identifier; |
|
2 |
|
|
3 | 1 |
CREATE TABLE systemMetadata ( |
4 | 2 |
guid text, -- the globally unique string identifier |
5 | 3 |
docid VARCHAR(250), -- the local document id # |
src/upgrade-db-to-1.10.0-oracle.sql | ||
---|---|---|
1 |
DROP TRIGGER identifier_before_insert; |
|
2 |
DROP TABLE identifier; |
|
3 |
|
|
4 | 1 |
CREATE TABLE systemMetadata ( |
5 | 2 |
guid VARCHAR2(2000), -- the globally unique string identifier |
6 | 3 |
docid VARCHAR(250), -- the local document id # |
Also available in: Unified diff
do not drop nonexistent table (identifier is not in 1.9.3)