-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
they don't sync across processes well otherwise.
- Loading branch information
1 parent
08e0cab
commit 735b408
Showing
3 changed files
with
39 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-- Table structure for suspect tracking | ||
-- Unfortunately necessary to be a table in order to properly synchronize | ||
-- cross-processes | ||
|
||
CREATE TABLE ntbb_suspects ( | ||
formatid varchar(100) NOT NULL PRIMARY KEY, | ||
start_date bigint(20) NOT NULL, | ||
elo int, | ||
coil int, | ||
gxe int | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters