Created
August 25, 2021 13:42
-
-
Save arifsetyawan/65770d6c5227340d1d149af6f02fe684 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- +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