2023-01-20 09:24:06 -05:00

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