diff --git a/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/ActionResult.sq b/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/ActionResult.sq index 5af5fa7..6451311 100644 --- a/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/ActionResult.sq +++ b/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/ActionResult.sq @@ -1,4 +1,4 @@ -CREATE TABLE ActionResult ( +CREATE TABLE IF NOT EXISTS ActionResult ( id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, testId INTEGER NOT NULL, actionId INTEGER NOT NULL, diff --git a/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/Test.sq b/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/Test.sq index 2bc6b6d..6b6128a 100644 --- a/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/Test.sq +++ b/connector/shared/src/commonMain/sqldelight/io/anthonyberg/connector/shared/database/Test.sq @@ -1,4 +1,4 @@ -CREATE TABLE Test ( +CREATE TABLE IF NOT EXISTS Test ( id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, procedureId INTEGER NOT NULL, startUTC TEXT NOT NULL,