mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
10 lines
182 B
SQL
10 lines
182 B
SQL
-- +goose Up
|
|
CREATE TABLE post (
|
|
id int NOT NULL,
|
|
title text,
|
|
$NAME text,
|
|
${NAME}title3 text,
|
|
${ANOTHER_VAR:-default}title4 text,
|
|
${SET_BUT_EMPTY_VALUE-default}title5 text,
|
|
);
|