function party_activity_update_7002 in Party 7
Add the data field to the party activity type table.
File
- modules/
party_activity/ party_activity.install, line 124 - Install scripts and other things for the party activity module
Code
function party_activity_update_7002() {
db_add_field('party_activity_type', 'data', array(
'description' => 'A serialized array of extra settings',
'type' => 'text',
'size' => 'big',
'serialize' => TRUE,
'not null' => FALSE,
));
}