Skip to content

Commit

Permalink
Fixes mysql table creation
Browse files Browse the repository at this point in the history
  • Loading branch information
RoinujNosde committed Aug 16, 2020
1 parent c1c584d commit 1415d44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.roinujnosde</groupId>
<artifactId>TitansBattle</artifactId>
<version>3.0.5</version>
<version>3.0.6</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private void setup() throws SQLException {
statement.execute("CREATE TABLE IF NOT EXISTS tb_winners"
+ "(date varchar(10) NOT NULL,"
+ " killer varchar(255),"
+ " player_winners varchar,"
+ " player_winners text,"
+ " winner_group varchar(255),"
+ " mode varchar(20) NOT NULL);");
}
Expand Down

0 comments on commit 1415d44

Please sign in to comment.