Skip to content

Instantly share code, notes, and snippets.

@arifsetyawan
Created August 25, 2021 13:42
Show Gist options
  • Save arifsetyawan/65770d6c5227340d1d149af6f02fe684 to your computer and use it in GitHub Desktop.
Save arifsetyawan/65770d6c5227340d1d149af6f02fe684 to your computer and use it in GitHub Desktop.
-- +goose Up
CREATE TABLE post (
id int NOT NULL,
title text,
body text,
PRIMARY KEY(id)
);
-- +goose Down
DROP TABLE post;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment