function cck_update_7000 in Content Construction Kit (CCK) 7.3
File
- ./
cck.install, line 75
Code
function cck_update_7000() {
if (!db_field_exists('cck_field_settings', 'entity_type')) {
$field = array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
'description' => 'The name of the entity type, NULL for field settings.',
);
db_add_field('cck_field_settings', 'entity_type', $field);
}
if (!db_field_exists('cck_field_settings', 'language')) {
$field = array(
'type' => 'varchar',
'length' => 32,
'not null' => FALSE,
'description' => 'The name of the language, NULL for field settings.',
);
db_add_field('cck_field_settings', 'language', $field);
}
}