From 95016f687ef49f30af85ab118533570cb1fb3497 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 4 Apr 2023 10:45:55 -0400 Subject: [PATCH] Fix SQL migrations --- db/migration/20230404104309_empty_sql_migration.sql | 13 +++++++++++++ db/migration/placeholder.sql | 3 --- 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 db/migration/20230404104309_empty_sql_migration.sql delete mode 100644 db/migration/placeholder.sql diff --git a/db/migration/20230404104309_empty_sql_migration.sql b/db/migration/20230404104309_empty_sql_migration.sql new file mode 100644 index 000000000..7a2c92116 --- /dev/null +++ b/db/migration/20230404104309_empty_sql_migration.sql @@ -0,0 +1,13 @@ +-- This file has intentionally no SQL logic. It is here to avoid an error in the linter: +-- db/db.go:23:4: invalid go:embed: build system did not supply embed configuration (typecheck) +-- + +-- +goose Up +-- +goose StatementBegin +SELECT 'up SQL query'; +-- +goose StatementEnd + +-- +goose Down +-- +goose StatementBegin +SELECT 'down SQL query'; +-- +goose StatementEnd diff --git a/db/migration/placeholder.sql b/db/migration/placeholder.sql deleted file mode 100644 index ca957faf8..000000000 --- a/db/migration/placeholder.sql +++ /dev/null @@ -1,3 +0,0 @@ --- This can be removed once we have at least one SQL migration. --- It is here to avoid an error in the linter: --- db/db.go:23:4: invalid go:embed: build system did not supply embed configuration (typecheck) \ No newline at end of file