function pay_update_6001 in Pay 7
Same name and namespace in other branches
- 6 pay.install \pay_update_6001()
Add our payment item table.
File
- ./
pay.install, line 313 - Pay module allows for accepting payments against a node using pluggable payment backends.
Code
function pay_update_6001() {
$table = drupal_get_schema('pay_item', TRUE);
db_create_table('pay_item', $table);
return t('Created "pay_item" table.');
}