Skip to content

Commit

Permalink
chore: fix tests fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Jan 10, 2024
1 parent c68ec7c commit d369a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-sqlite-164
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CREATE TABLE "stories" ("id" INTEGER NOT NULL, "name" VARCHAR, "user_id" INTEGER, PRIMARY KEY ("id"), FOREIGN KEY ("user_id") REFERENCES "users" ("id") ON UPDATE NO ACTION ON DELETE NO ACTION)
CREATE TABLE "stories" ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "name" VARCHAR, "user_id" INTEGER, FOREIGN KEY ("user_id") REFERENCES "users" ("id") ON UPDATE NO ACTION ON DELETE NO ACTION)

0 comments on commit d369a41

Please sign in to comment.