goose/db-sample/migrations/001_basics.sql

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;