diff --git a/backend/controller/sql/schema/001_init.sql b/backend/controller/sql/schema/001_init.sql index 45c95c1349..356af63305 100644 --- a/backend/controller/sql/schema/001_init.sql +++ b/backend/controller/sql/schema/001_init.sql @@ -397,7 +397,7 @@ CREATE TABLE topic_subscriptions ( module_id BIGINT NOT NULL REFERENCES modules(id), -- Name of the subscription. - name TEXT UNIQUE NOT NULL, + name TEXT NOT NULL, -- Cursor pointing into the topic_events table. cursor BIGINT REFERENCES topic_events(id) ON DELETE CASCADE,