mirror of
https://github.com/pressly/goose.git
synced 2025-05-17 13:01:10 +00:00
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
|