function migrate_schema_status in Migrate 6.2
Same name and namespace in other branches
- 7.2 migrate.install \migrate_schema_status()
1 call to migrate_schema_status()
- migrate_schema in ./
migrate.install - @file Migrate module installation
File
- ./
migrate.install, line 15 - Migrate module installation
Code
function migrate_schema_status() {
return array(
'description' => 'Status information for migrations',
'fields' => array(
'machine_name' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'description' => 'Unique machine name for migration',
),
'class_name' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'description' => 'Name of class to instantiate for this migration',
),
'status' => array(
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Current status of migration',
),
'highwater' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'Highwater mark for detecting updated content',
),
'arguments' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
'description' => 'A serialized array of arguments to the migration constructor',
),
),
'primary key' => array(
'machine_name',
),
);
}