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