You are here

function wordpress_migrate_update_7001 in WordPress Migrate 7.2

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

Add uid field to wordpress_migrate table.

File

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

Code

function wordpress_migrate_update_7001() {
  db_add_field('wordpress_migrate', 'uid', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'description' => "User ID of the account initiating the import",
  ));
  return t('Added uid column to wordpress_migrate table');
}