goose/db-sample/migrations/001_basics.sql
2012-11-24 16:57:03 -08:00

12 lines
142 B
SQL

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