Skip to content

Commit

Permalink
Fix twitch_rank column not being included in SQL schema (#3431)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy authored Sep 20, 2024
1 parent 2a46203 commit ac4d3bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SQL/tgstation_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,9 @@ CREATE TABLE `player` (
`lastadminrank` varchar(32) NOT NULL DEFAULT 'Player',
`accountjoindate` DATE DEFAULT NULL,
`flags` smallint(5) unsigned DEFAULT '0' NOT NULL,
`antag_tokens` tinyint(4) unsigned DEFAULT '0',
`antag_tokens` tinyint(4) unsigned DEFAULT '0',
`metacoins` int(10) unsigned NOT NULL DEFAULT '0',
`twitch_rank` VARCHAR(32) NOT NULL DEFAULT '',
`patreon_key` VARCHAR(32) NOT NULL DEFAULT 'None',
`patreon_rank` VARCHAR(32) NOT NULL DEFAULT 'None',
PRIMARY KEY (`ckey`),
Expand Down

0 comments on commit ac4d3bf

Please sign in to comment.