Working lesson

This commit is contained in:
Nanne Baars
2018-05-21 13:19:26 +02:00
parent 9d7886d572
commit 60ef35e241
5 changed files with 10 additions and 11 deletions

View File

@ -101,7 +101,7 @@ public class CreateDB {
// Create the new table
try {
String createTableStatement = "CREATE TABLE jwt_keys"
+ " (" + "id varchar(10),"
+ " (" + "id varchar(20),"
+ "key varchar(20))";
statement.executeUpdate(createTableStatement);