goose/example/migrations/00001_create_post_table.sql

11 lines
141 B
SQL

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