goose/examples/sql-migrations/00003_no_transaction.sql

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;