function scald_update_7001 in Scald: Media Management made easy 7
Add the {scald_atoms}.data column.
A serialized array of atom and provider specific additionnal data.
File
- ./
scald.install, line 474
Code
function scald_update_7001() {
$new_field = array(
'description' => 'A serialized array of atom and provider specific additionnal data.',
'type' => 'blob',
'size' => 'big',
'not null' => TRUE,
'serialize' => TRUE,
);
db_add_field('scald_atoms', 'data', $new_field);
}