aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/specific/postgresql/V1.19__messages_properties.sql
blob: f3b72f66fd58d62cf1f83a66e61251ba869552ab (plain) (blame)
1
2
3
4
5
6
CREATE TABLE messages_properties (
  message_id bigint NOT NULL,
  property_key character varying(255) NOT NULL,
  property_value text NOT NULL,
  CONSTRAINT message_key UNIQUE(message_id, property_key)
)