Skip to content

Commit

Permalink
Fixed SQLite query bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Michelo11 committed Apr 12, 2024
1 parent e401308 commit a06c2fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'me.michelemanna'
version = '1.0-SNAPSHOT'
version = '1.0'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void connect() throws SQLException, IOException {

statement.execute(
"CREATE TABLE IF NOT EXISTS parkours (" +
"id INTEGER AUTOINCREMENT PRIMARY KEY," +
"id INTEGER PRIMARY KEY AUTOINCREMENT," +
"name VARCHAR(36) NOT NULL," +
"checkpoint TEXT" +
")"
Expand Down

0 comments on commit a06c2fe

Please sign in to comment.