10 lines
171 B
SQL
10 lines
171 B
SQL
-- +goose Up
|
|
|
|
ALTER TABLE installations
|
|
ADD COLUMN IF NOT EXISTS name TEXT NOT NULL DEFAULT '';
|
|
|
|
-- +goose Down
|
|
|
|
ALTER TABLE installations
|
|
DROP COLUMN IF EXISTS name;
|