Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- Change property.value to TEXT, previous VARCHAR(255) is too short for properties like description
-- Remove constraint UNIQUE (template_identifier, name) that prevented multiple entities from sharing the same display name within a template

ALTER TABLE property
ALTER COLUMN value TYPE TEXT;

ALTER TABLE entity
DROP CONSTRAINT entity_template_identifier_name_key;
Loading