Skip to content

Commit

Permalink
Fixed SQL PRIMARY KEY (id) Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Mohr committed Jul 1, 2013
1 parent b2dc6d5 commit ee90b48
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions SQL/tgstation_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ CREATE TABLE `erro_death` (
`bruteloss` int(11) NOT NULL,
`brainloss` int(11) NOT NULL,
`fireloss` int(11) NOT NULL,
`oxyloss` int(11) NOT NULL
`oxyloss` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

Expand Down Expand Up @@ -155,7 +156,8 @@ CREATE TABLE `erro_legacy_population` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`playercount` int(11) DEFAULT NULL,
`admincount` int(11) DEFAULT NULL,
`time` datetime NOT NULL
`time` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

Expand Down

0 comments on commit ee90b48

Please sign in to comment.