MOB-629 - remove AVM issuer id (cont)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13690 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2009-03-19 16:40:19 +00:00
parent 3179e8fdf2
commit cbc274c12c

View File

@@ -1,7 +1,7 @@
-- --
-- Title: Upgrade to V3.2 - Remove AVM Issuer -- Title: Upgrade to V3.2 - Remove AVM Issuer
-- Database: MySQL -- Database: MySQL
-- Since: V3.2 schema X -- Since: V3.2 schema 2008
-- Author: janv -- Author: janv
-- --
-- remove AVM node issuer - replace with auto-increment id -- remove AVM node issuer - replace with auto-increment id
@@ -38,7 +38,11 @@ update avm_version_roots set root_id = (select max(id) from avm_nodes) where roo
delete from avm_nodes where id = 0; delete from avm_nodes where id = 0;
alter table avm_nodes modify column id bigint not null auto_increment; alter table avm_nodes modify column id bigint not null auto_increment;
-- drop issuer table
drop table avm_issuer_ids;
-- --
-- Record script finish -- Record script finish