mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
SAIL-232: AppliedPatch.hbm.xml
- Basic CREATE script for core tables: AlfrescoCreate-3.3-RepoTables.sql - Removed Hibernate control of alf_applied_patch git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18101 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
--
|
||||
-- Title: Core Repository Tables
|
||||
-- Database: MySQL InnoDB
|
||||
-- Since: V3.3 Schema 4000
|
||||
-- Author: Derek Hulley
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
CREATE TABLE alf_applied_patch
|
||||
(
|
||||
id VARCHAR(64) NOT NULL,
|
||||
description TEXT,
|
||||
fixes_from_schema INTEGER,
|
||||
fixes_to_schema INTEGER,
|
||||
applied_to_schema INTEGER,
|
||||
target_schema INTEGER,
|
||||
applied_on_date DATETIME,
|
||||
applied_to_server VARCHAR(64),
|
||||
was_executed BIT,
|
||||
succeeded BIT,
|
||||
report TEXT,
|
||||
PRIMARY KEY (id)
|
||||
) ENGINE=InnoDB;
|
Reference in New Issue
Block a user