goose/internal/sqlparser/testdata/valid-txn/00003_no_transaction.sql
2023-01-19 09:19:13 -05: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;