mirror of
https://github.com/pressly/goose.git
synced 2025-05-12 02:21:33 +00:00
13 lines
202 B
SQL
13 lines
202 B
SQL
|
|
-- +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;
|