KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
549B

  1. -- --------------------------------------------------------
  2. --
  3. -- Table structure for table `donations`
  4. --
  5. CREATE TABLE `donations` (
  6. `transaction_id` varchar(64) collate utf8_unicode_ci NOT NULL default '',
  7. `donor_email` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  8. `amount` double NOT NULL default '0',
  9. `original_request` text collate utf8_unicode_ci NOT NULL,
  10. `dt` timestamp NOT NULL default CURRENT_TIMESTAMP,
  11. PRIMARY KEY (`transaction_id`)
  12. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;