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.
Updated by krileon over 7 years ago
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 ) )
Updated by krileon over 7 years ago
Profile SQL Migration: CONCAT_WS( '.', 'profile', IF( `item` != '', `item`, `user_id` ), IF( `subtype` != '', `subtype`, NULL ) )
Updated by krileon over 7 years ago
Status SQL Migration: CONCAT_WS( '.', 'profile', IF( `parent` != '', `parent`, `user_id` ) )
Updated by krileon over 7 years ago
Blog SQL Migration: CONCAT_WS( '.', 'blog', `item` )
Updated by krileon over 7 years ago
Forum SQL Migration: CONCAT_WS( '.', 'kunena', `item`, `subtype` )
Updated by krileon over 7 years ago
Commented/Tagged SQL Migration: CONCAT_WS( '.', 'activity', `item`, `subtype` )
Updated by krileon over 7 years ago
Field SQL Migration: CONCAT_WS( '.', 'profile', IF( `parent` != '', `parent`, `user_id` ), 'field', `item` )
Updated by krileon over 7 years ago
Gallery SQL Migration: CONCAT_WS( '.', 'gallery', `subtype`, `item` )
Updated by krileon over 7 years ago
- % Done changed from 0 to 20
Activity asset migration done. Comments and Tags also need SQL migrations to asset.
Updated by krileon over 7 years ago
- % Done changed from 20 to 80
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.
Updated by krileon over 7 years ago
- Status changed from Assigned to Resolved
- % Done changed from 80 to 100
All that's left is CB Auto Actions integration needs updating to be compatible.