Results 1 to 3 of 3

Thread: Payments table doesn't exist in db

  1. #1
    Join Date
    Aug 2010
    Posts
    15

    Default Payments table doesn't exist in db

    I have submitted support ticket and bug report but yet to hear anything.

    Please can anyone attach the table schema for the "Payments" table in db.

    I really apprciate any help that I can get.

    Thank you.
    Last edited by chumy; 06-04-2012 at 10:17 PM.

  2. #2

    Default

    Hi,

    Table structure for table `payments`
    Code:
    CREATE TABLE IF NOT EXISTS `payments` (
      `payment_id` int(11) unsigned NOT NULL auto_increment,
      `payment_hash` varchar(255) NOT NULL default '',
      `payment_user_id` int(10) unsigned NOT NULL default '0',
      `payment_completed` smallint(1) NOT NULL default '0',
      `payment_package_id` int(10) unsigned NOT NULL default '0',
      `payment_period` varchar(255) NOT NULL default '',
      `payment_amount` varchar(255) NOT NULL default '',
      PRIMARY KEY  (`payment_id`),
      KEY `payment_hash` (`payment_hash`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ;
    Thanks,

  3. #3
    Join Date
    Aug 2010
    Posts
    15

    Default

    Thank you much

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •