{ "goosesql": { "prefix": "goosesql", "description": "create up and down comments", "body": [ "-- +goose Up\n", "-- +goose Down\n" ] }, "goosetable": { "prefix": "goosetable", "description": "create sql table", "body": [ "-- +goose Up\n", "CREATE TABLE $1 (", "\tid UUID PRIMARY KEY,", "\tcreated_at TIMESTAMP NOT NULL,", "\tupdated_at TIMESTAMP NOT NULL,", "\tname TEXT NOT NULL", ");\n", "-- +goose Down\n", "DROP TABLE $1;" ] } }