13 lines
202 B
MySQL
13 lines
202 B
MySQL
|
|
||
|
-- +goose Up
|
||
|
CREATE TABLE fancier_post (
|
||
|
id int NOT NULL,
|
||
|
title text,
|
||
|
body text,
|
||
|
created_on timestamp without time zone,
|
||
|
PRIMARY KEY(id)
|
||
|
);
|
||
|
|
||
|
-- +goose Down
|
||
|
DROP TABLE fancier_post;
|