mirror of https://github.com/pressly/goose.git
23 lines
353 B
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
|