New pledge related implementations.

Contributed by iDesy.
This commit is contained in:
MobiusDevelopment
2021-05-23 00:50:22 +00:00
parent a76f2abd78
commit a846368daf
30 changed files with 1282 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
DROP TABLE IF EXISTS `character_pledge_donation`;
CREATE TABLE IF NOT EXISTS `character_pledge_donation` (
`charId` int(10) unsigned NOT NULL DEFAULT 0,
`points` int(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;