mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- 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
25 lines
603 B
SQL
25 lines
603 B
SQL
--
|
|
-- 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;
|