Skip to content

Commit

Permalink
add todos
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Jun 18, 2016
1 parent 63207e4 commit fd63f47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sql/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ CREATE TABLE notable_players (
);

CREATE TABLE match_logs (
match_id bigint,
match_id bigint REFERENCES matches(match_id) ON DELETE CASCADE,
time int,
type varchar(100),
team int,
Expand Down
2 changes: 2 additions & 0 deletions store/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ function insertMatch(db, redis, match, options, cb)
player_slot: pm.player_slot
}, cb);
}, exit);
//TODO create leagues table
//TODO create worker task to get leagues
//TODO create table for picks/bans
//TODO insert picks/bans
//TODO remove dota_unknown to save space
Expand Down

0 comments on commit fd63f47

Please sign in to comment.