You are here

uc_webform_pane.install in Ubercart Webform Checkout Pane 5

File

uc_webform_pane.install
View source
<?php

/**
 * schema for ubercart webform panes
 */
function uc_webform_pane_install() {
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      db_query("CREATE TABLE {uc_webform_pane} (\n        nid int(11) unsigned NOT NULL,\n        cid_order_id int(10) unsigned NOT NULL,\n        PRIMARY KEY (nid, cid_order_id)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      break;
    case 'pgsql':
      db_query("CREATE TABLE {uc_webform_pane} (\n        nid integer NOT NULL default 0,\n        cid_order_id integer NOT NULL default 0\n      )");
      db_query("CREATE INDEX {uc_webform_pane}_nid ON {uc_webform_pane} (nid)");
      break;
  }
}
function uc_webform_pane_uninstall() {
  db_query("DROP TABLE {uc_webform_pane}");
}

Functions

Namesort descending Description
uc_webform_pane_install schema for ubercart webform panes
uc_webform_pane_uninstall