teldrive/internal/database/migrations/20240609025818_constraint.sql
2024-06-09 03:07:31 +05:30

5 lines
245 B
SQL

-- +goose Up
-- +goose StatementBegin
DROP INDEX IF EXISTS teldrive.unique_file;
CREATE UNIQUE INDEX IF NOT EXISTS unique_file ON teldrive.files USING btree (name, parent_id, user_id,size) WHERE (status = 'active'::text);
-- +goose StatementEnd