Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
remove queue_metadata.data NOT NULL constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
jlegrone committed Sep 20, 2021
1 parent b54068f commit e5ba2aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ CREATE TABLE queue (

CREATE TABLE queue_metadata (
queue_type INT NOT NULL,
data MEDIUMBLOB NOT NULL,
data MEDIUMBLOB, -- TODO(jlegrone): add back NOT NULL constraint
data_encoding VARCHAR(16) NOT NULL,
PRIMARY KEY(queue_type)
);
Expand Down

0 comments on commit e5ba2aa

Please sign in to comment.