All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alfresco.dbscripts.create.org.hibernate.dialect.H2Dialect.AlfrescoCreate-SubscriptionTables.sql Maven / Gradle / Ivy

There is a newer version: 5.0
Show newest version
--
-- Title:      Subscription tables
-- Database:   PostgreSQL
-- Since:      V4.0 Schema 5011
-- Author:     Florian Mueller
--
-- Please contact [email protected] if you need assistance with the upgrade.
--

CREATE TABLE alf_subscriptions
(
  user_node_id INT8 NOT NULL,
  node_id INT8 NOT NULL,
  PRIMARY KEY (user_node_id, node_id),
  CONSTRAINT fk_alf_sub_user FOREIGN KEY (user_node_id) REFERENCES alf_node(id) ON DELETE CASCADE,
  CONSTRAINT fk_alf_sub_node FOREIGN KEY (node_id) REFERENCES alf_node(id) ON DELETE CASCADE
);
CREATE INDEX fk_alf_sub_node ON alf_subscriptions (node_id);

--
-- Record script finish
--
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V4.0-SubscriptionTables';
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-V4.0-SubscriptionTables', 'Manually executed script upgrade V4.0: Subscription Tables',
    0, 5010, -1, 5011, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
  );




© 2015 - 2025 Weber Informatics LLC | Privacy Policy