gorm-goose/db-sample/migrations/001_basics.sql
2016-09-09 15:12:30 +03: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;