/[drupal]/contributions/modules/payment_ach/payment_ach.install
ViewVC logotype

Contents of /contributions/modules/payment_ach/payment_ach.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Thu Sep 21 22:45:13 2006 UTC (3 years, 2 months ago) by budda
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
Initial check in of ACH Payment module for Drupal eCommerce system.
1 <?php
2 // $Id$
3
4 function payment_ach_install() {
5 drupal_set_message(t('Installing ACH Payment database tables.'));
6
7 db_query("CREATE TABLE ec_payment_ach (
8 txnid int(11) NOT NULL default '0',
9 trace varchar(255) NOT NULL default '0',
10 amount decimal(10,2) NOT NULL default '0.00',
11 PRIMARY KEY (txnid)
12 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
13 }

  ViewVC Help
Powered by ViewVC 1.1.2