You are here

function wordpress_migrate_update_7002 in WordPress Migrate 7.2

Same name and namespace in other branches
  1. 7 wordpress_migrate.install \wordpress_migrate_update_7002()

Add the wordpress_migrate_attachment table.

File

./wordpress_migrate.install, line 191
WordPress migration module installation

Code

function wordpress_migrate_update_7002() {
  db_create_table('wordpress_migrate_attachment', wordpress_migrate_schema_attachment());
  return t('Added the wordpress_migrate_attachment table');
}