
http://rathena.org/wiki/Script_header git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15262 54d463be-8e91-2dee-dedb-b68131a5f0ec
7 lines
194 B
SQL
7 lines
194 B
SQL
CREATE TABLE `donate` (
|
|
`account_id` INT(11) UNSIGNED NOT NULL,
|
|
`amount` FLOAT(9,2) UNSIGNED NOT NULL,
|
|
`claimed` FLOAT(9,2) UNSIGNED NOT NULL,
|
|
PRIMARY KEY (`account_id`)
|
|
) TYPE=MYISAM;
|