initial release of almost completely automatic event rewarder

This commit is contained in:
2024-06-08 20:39:58 +02:00
parent 6b6753ec1b
commit 68737ea990
7 changed files with 266 additions and 0 deletions
+13
View File
@@ -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`)
)