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

12 lines
142 B
MySQL
Raw Permalink Normal View History

2016-09-09 14:12:30 +02:00
-- +goose Up
CREATE TABLE post (
id int NOT NULL,
title text,
body text,
PRIMARY KEY(id)
);
-- +goose Down
DROP TABLE post;