fix rashid, fix spells, add znote sql schema

This commit is contained in:
ErikasKontenis
2020-04-19 12:36:39 +03:00
parent cfccd2093b
commit 870b7df973
3 changed files with 20 additions and 1 deletions

17
sabrehaven_znote.sql Normal file
View File

@@ -0,0 +1,17 @@
ALTER TABLE znote_accounts
ADD twitchuser varchar(256);
ALTER TABLE znote_accounts
ADD affiliatecode varchar(256);
ALTER TABLE znote_accounts
ADD affiliated varchar(256);
CREATE TABLE IF NOT EXISTS `znote_affiliate_logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`affiliator_account_id` int(11) NOT NULL,
`affiliated_account_id` int(11) NOT NULL,
`points_given` int(10) NOT NULL,
`paid_money` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;