feat: reward codes

this is for giving rewards across characters as the did in live.
Tested that the default config works
Tested that all claim codes work
Tested that saving and loading claim codes work
Tested that mail sends correctly
This commit is contained in:
Aaron Kimbre
2023-11-19 01:28:07 -06:00
parent 8e84cafdfa
commit 138dc0fab6
19 changed files with 219 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS accounts_rewardcodes (
account_id INT NOT NULL REFERENCES accounts(id),
rewardcode INT NOT NULL,
PRIMARY KEY (account_id, rewardcode)
);