Removed redundant scripts after adding ${TRUE} and ${FALSE} variable substitution

- Most PostgreSQL scripts differed only by boolean values
 - Removed reference to non-existent dialect, org.hibernate.dialect.AlfrescoSQLServerDialect
 - Some minor patch cleanup to aid file diffs


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17095 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-10-22 15:56:46 +00:00
parent fd738ed890
commit 05fbb7836f
6 changed files with 7 additions and 7 deletions

View File

@@ -13,5 +13,5 @@ insert into alf_applied_patch
values
(
'patch.db-V1.4-TxnCommitTimeIndex', 'Executed script AlfrescoSchemaUpdate-1.4-TxnCommitTimeIndex.sql',
0, 75, -1, 76, null, 'UNKOWN', 1, 1, 'Script completed'
0, 75, -1, 76, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
);

View File

@@ -20,5 +20,5 @@ INSERT INTO alf_applied_patch
VALUES
(
'patch.db-V2.0-ContentUrls', 'Manually executed script upgrade V2.0: Indexes for alf_content_url table',
0, 123, -1, 124, null, 'UNKOWN', 1, 1, 'Script completed'
0, 123, -1, 124, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
);

View File

@@ -8,7 +8,7 @@
--
UPDATE JBPM_TASK SET PRIORITY_ = 2;
UPDATE JBPM_NODE SET ISASYNCEXCL_ = 0;
UPDATE JBPM_NODE SET ISASYNCEXCL_ = ${FALSE};
UPDATE JBPM_MODULEINSTANCE SET VERSION_ = 0;
UPDATE JBPM_POOLEDACTOR SET VERSION_ = 0;
UPDATE JBPM_SWIMLANEINSTANCE SET VERSION_ = 0;
@@ -25,5 +25,5 @@ INSERT INTO alf_applied_patch
VALUES
(
'patch.db-V2.1-JBPMUpdate', 'Manually executed script upgrade V2.1: JBPM 3.1.2 to 3.2 Data Upgrade',
0, 51, -1, 52, null, 'UNKOWN', 1, 1, 'Script completed'
0, 51, -1, 52, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
);

View File

@@ -17,5 +17,5 @@ INSERT INTO alf_applied_patch
VALUES
(
'patch.db-V2.1-NotNullColumns', 'Manually executed script upgrade V2.1: Add nullable columns',
0, 63, -1, 64, null, 'UNKOWN', 1, 1, 'Script completed'
0, 63, -1, 64, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
);

View File

@@ -31,5 +31,5 @@ INSERT INTO alf_applied_patch
VALUES
(
'patch.db-V2.1-RemoveWcmSubmittedAspect', 'Manually executed script upgrade V2.1: Remove wcmwf:submitted aspect',
0, 72, -1, 73, null, 'UNKOWN', 1, 1, 'Script completed'
0, 72, -1, 73, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
);

View File

@@ -29,5 +29,5 @@ INSERT INTO alf_applied_patch
VALUES
(
'patch.db-V2.1-VersionColumns2', 'Manually executed script upgrade V2.1: Created initial version number for ADM entities',
0, 63, -1, 64, null, 'UNKOWN', 1, 1, 'Script completed'
0, 63, -1, 64, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
);