function simplenews_update_7007 in Simplenews 7
Same name and namespace in other branches
- 7.2 simplenews.install \simplenews_update_7007()
Allow longer from_name field values.
File
- ./
simplenews.install, line 824 - Install, update and uninstall functions for the simplenews module
Code
function simplenews_update_7007() {
db_change_field('simplenews_category', 'from_name', 'from_name', array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Sender name for newsletter emails.',
));
}