function flexiform_update_7012 in Flexiform 7
Add the settings column to flexiforms.
File
- ./
flexiform.install, line 586 - Sets up the base table for our entity and a table to store information about the entity types.
Code
function flexiform_update_7012() {
db_add_field('flexiform', 'settings', array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
'description' => 'A serialized array of general settings for this flexiform.',
));
}