initial release of almost completely automatic event rewarder
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
CREATE TABLE unloze_event.rewards (
|
||||
`rowid` int auto_increment NOT NULL,
|
||||
`steamid` varchar(64) not NULL,
|
||||
`username` varchar(256) DEFAULT NULL,
|
||||
`event_map` varchar(512) DEFAULT NULL,
|
||||
`event_reward_days` int not NULL,
|
||||
`created_on` datetime DEFAULT current_timestamp(),
|
||||
`admin_created_reward_steamid` varchar(64) not NULL,
|
||||
`admin_created_reward_name` varchar(64) not NULL,
|
||||
`is_processed` bool default false,
|
||||
`has_no_forum_account_with_associated_steam` bool default null,
|
||||
PRIMARY KEY (`rowid`)
|
||||
)
|
||||
Reference in New Issue
Block a user