-- +goose Up
ALTER TABLE documents
ADD COLUMN parent_id BIGINT REFERENCES documents (id) NULL;
-- +goose Down
DROP COLUMN parent_id;