mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
8 lines
168 B
SQL
8 lines
168 B
SQL
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,
|
|
); |