Actions
Feature proposal #6509
closedImplement migration of old type, subtype, item, and parent to asset
Description
Old activity needs to migrate as well as possible. Some activity may become invalid due to this if too old.
Actions
Added by krileon about 8 years ago. Updated about 8 years ago.
Description
Old activity needs to migrate as well as possible. Some activity may become invalid due to this if too old.
GJ SQL Migration: CONCAT_WS( '.', 'groupjive.group', IF( `parent` != '', `parent`, `item` ), IF( `subtype` != '', IF( `subtype` != 'group', REPLACE( `subtype`, 'group.', '' ), 'create' ), NULL ), IF( `parent` != '', `item`, NULL ) )
Profile SQL Migration: CONCAT_WS( '.', 'profile', IF( `item` != '', `item`, `user_id` ), IF( `subtype` != '', `subtype`, NULL ) )
Status SQL Migration: CONCAT_WS( '.', 'profile', IF( `parent` != '', `parent`, `user_id` ) )
Blog SQL Migration: CONCAT_WS( '.', 'blog', `item` )
Forum SQL Migration: CONCAT_WS( '.', 'kunena', `item`, `subtype` )
Commented/Tagged SQL Migration: CONCAT_WS( '.', 'activity', `item`, `subtype` )
Field SQL Migration: CONCAT_WS( '.', 'profile', IF( `parent` != '', `parent`, `user_id` ), 'field', `item` )
Gallery SQL Migration: CONCAT_WS( '.', 'gallery', `subtype`, `item` )
Activity asset migration done. Comments and Tags also need SQL migrations to asset.
All database migrations completed (only necessary for Activity, Comments, and Tags). Custom Activity/Comments will also have type, subtype, parent, and item migrated as type.parent.subtype.item. Configuration migrations still needed.
All that's left is CB Auto Actions integration needs updating to be compatible.