function system_update_7050

Change {batch}.id column from serial to regular int.

Related topics

Archivo

drupal-7.x/modules/system/system.install, line 2397
Install, update and uninstall functions for the system module.

Código

function system_update_7050() {
  db_change_field('batch', 'bid', 'bid', array('description' => 'Primary Key: Unique batch ID.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE));
}