function twilio_update_7001 in Twilio 7
Add 'country' column to {twilio_user} table
File
- ./
twilio.install, line 112 - Install and uninstall functions for the twilio module.
Code
function twilio_update_7001() {
$spec = array(
'type' => 'varchar',
'not null' => TRUE,
'length' => 32,
'default' => '1',
);
db_add_field('twilio_user', 'country', $spec);
}