function wordpress_migrate_update_7002 in WordPress Migrate 7
Same name and namespace in other branches
- 7.2 wordpress_migrate.install \wordpress_migrate_update_7002()
Add the wordpress_migrate_attachment table.
File
- ./
wordpress_migrate.install, line 95 - WordPress migration module installation
Code
function wordpress_migrate_update_7002() {
$ret = array();
db_create_table('wordpress_migrate_attachment', wordpress_migrate_schema_attachment());
$ret[] = t('Added the wordpress_migrate_attachment table');
return $ret;
}