goose/example/migrations/00003_no_transaction.sql
2017-05-06 13:39:52 -06:00

12 lines
166 B
SQL

-- +goose NO TRANSACTION
-- +goose Up
CREATE TABLE post (
id int NOT NULL,
title text,
body text,
PRIMARY KEY(id)
);
-- +goose Down
DROP TABLE post;