summaryrefslogtreecommitdiff
path: root/npc/custom/eAAC_Scripts/DonationGirl/sql/donate.sql
blob: 9315228a9df597b129d3f1e8579d2c488e8215f3 (plain) (blame)
1
2
3
4
5
6
CREATE TABLE `donate` (
  `account_id` int(11) unsigned NOT NULL,
  `amount` float(5,2) unsigned NOT NULL,
  `claimed` float(5,2) unsigned NOT NULL,
  PRIMARY KEY  (`account_id`,`amount`)
) TYPE=MyISAM;