Jump to content

ParSalian

Members
  • Posts

    35
  • Joined

  • Last visited

Community Answers

  1. ParSalian's post in R>Poring Collection was marked as the answer   
    Here is one link for Poring Collection http://spriterepository.com/files/file/583-poring-collection/
  2. ParSalian's post in MySQL Error was marked as the answer   
    I show in my Database and i got these Table. If you delete this table here the  SQL Dump. 
    SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for cp_redeemlog -- ---------------------------- DROP TABLE IF EXISTS `cp_redeemlog`; CREATE TABLE `cp_redeemlog` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `nameid` int(11) unsigned NOT NULL DEFAULT '0', `quantity` int(11) unsigned NOT NULL DEFAULT '0', `cost` int(11) unsigned NOT NULL, `account_id` int(11) unsigned NOT NULL, `char_id` int(11) unsigned DEFAULT NULL, `redeemed` tinyint(1) unsigned NOT NULL, `redemption_date` datetime DEFAULT NULL, `purchase_date` datetime NOT NULL, `credits_before` int(10) NOT NULL, `credits_after` int(10) NOT NULL, PRIMARY KEY (`id`), KEY `nameid` (`nameid`,`account_id`,`char_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Log of redeemed donation items.'; -- ---------------------------- -- Records -- ----------------------------
×
×
  • Create New...