mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merged V3.1 to HEAD
12923: New Enterprise Examples project containing hyperic plugin and README.txt 12908: A few fixes to improve consistency in JMX object naming 12889: Fix failing unit tests. Include linkvalidation in unit test classpath. 12885: Merged DEV/DAVEW_POST3D to V3.1 12881: Changes to allow monitoring of authentication configuration 12862: Merged DEV/3.1_ENTERPRISE_ONLY to DEV/DAVEW_POST3D 12797: Changes to allow persistence of changes made by JMX. 12852: Review comment from Derek: remove dependencies of descriptor service (serverDescriptorDAO, currentRepoDescriptorDAO and installedRepoDescriptorDAO) out of bootstrap-context.xml 12849: Correction to JAWS-221: dbscripts directory must be directly under config/alfresco in enterprise project. 12847: JAWS-221: Move proprietary DB create/upgrade scripts into Enterprise Only project 12845: Avoid NullPointerExceptions in status templates when no codeName or description exists for the status code git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13513 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
--
|
||||
-- Title: Activities Schema - Extras (Indexes, Sequences)
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V3.0.0 Schema
|
||||
--
|
||||
|
||||
-- Activity Post
|
||||
CREATE SEQUENCE alf_activity_post_seq START WITH 1 INCREMENT BY 1;
|
||||
CREATE INDEX post_jobtasknode_idx ON alf_activity_post(job_task_node);
|
||||
CREATE INDEX post_status_idx ON alf_activity_post(status);
|
||||
|
||||
-- Activity Feed
|
||||
CREATE SEQUENCE alf_activity_feed_seq START WITH 1 INCREMENT BY 1;
|
||||
|
||||
CREATE INDEX feed_postdate_idx ON alf_activity_feed(post_date);
|
||||
CREATE INDEX feed_postuserid_idx ON alf_activity_feed(post_user_id);
|
||||
CREATE INDEX feed_feeduserid_idx ON alf_activity_feed(feed_user_id);
|
||||
CREATE INDEX feed_sitenetwork_idx ON alf_activity_feed(site_network);
|
||||
CREATE INDEX feed_activityformat_idx ON alf_activity_feed(activity_format);
|
||||
|
||||
-- Activity Feed Control
|
||||
CREATE SEQUENCE alf_activity_feed_control_seq START WITH 1 INCREMENT BY 1;
|
||||
|
||||
CREATE INDEX feedctrl_feeduserid_idx ON alf_activity_feed_control(feed_user_id);
|
||||
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.0-0-CreateActivitiesExtras';
|
||||
INSERT INTO alf_applied_patch
|
||||
(id, description, fixes_from_schema, fixes_to_schema, applied_to_schema, target_schema, applied_on_date, applied_to_server, was_executed, succeeded, report)
|
||||
VALUES
|
||||
(
|
||||
'patch.db-V3.0-0-CreateActivitiesExtras', 'Executed script create V3.0: Created activities extras',
|
||||
0, 125, -1, 126, null, 'UNKNOWN', TRUE, TRUE, 'Script completed'
|
||||
);
|
Reference in New Issue
Block a user