goose/internal/sqlparser/testdata/valid-up/test05/input.sql

23 lines
353 B
SQL

-- +goose Up
CREATE TABLE ssh_keys (
id integer NOT NULL,
"publicKey" text
-- insert comment there
);
-- insert comment there
-- This is a dangling comment
-- Another comment
-- Foo comment
CREATE TABLE ssh_keys_backup (
id integer NOT NULL,
-- insert comment here
"publicKey" text
-- insert comment there
);
-- +goose Down