4 lines
182 B
Cheetah
4 lines
182 B
Cheetah
ALTER TABLE {{.SchemaName}}.{{.TableName}}
|
|
ADD COLUMN IF NOT EXISTS {{.ColumnName}} {{.ColumnType}}
|
|
{{- if .Default}} DEFAULT {{.Default}}{{end}}
|
|
{{- if .NotNull}} NOT NULL{{end}}; |