Radoslav Kirilov 120e6a38d5
feat: environment variables interpolation (#604)
Co-authored-by: Mike Fridman <mf192@icloud.com>
2023-12-23 15:13:19 -05:00

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,
);