function commerce_email_update_7100 in Commerce Email 7
Add content (text) format field to {commerce_email} table.
File
- ./
commerce_email.install, line 120 - Install file for Commerce Email Sets default emails and settings
Code
function commerce_email_update_7100() {
$spec = array(
'type' => 'varchar',
'description' => 'content_format setting',
'length' => 255,
'not null' => FALSE,
'default' => NULL,
);
db_add_field('commerce_email', 'content_format', $spec);
}