You are here

function pay_update_6001 in Pay 6

Same name and namespace in other branches
  1. 7 pay.install \pay_update_6001()

Add our payment item table.

File

./pay.install, line 318
Pay module allows for accepting payments against a node using pluggable payment backends.

Code

function pay_update_6001() {
  $ret = array();
  $table = drupal_get_schema('pay_item', TRUE);
  db_create_table($ret, 'pay_item', $table);
  return $ret;
}