mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-07 06:53:09 -06:00
Add NOT NULL to columns
This commit is contained in:
parent
f480c32038
commit
82515c6e2a
|
|
@ -19,8 +19,8 @@ CREATE TABLE IF NOT EXISTS output_room_events (
|
|||
event_json TEXT NOT NULL,
|
||||
-- A list of event IDs which represent a delta of added/removed room state. May be NULL
|
||||
-- if no state has been added/removed.
|
||||
add_state_ids TEXT[],
|
||||
remove_state_ids TEXT[]
|
||||
add_state_ids TEXT[] NOT NULL,
|
||||
remove_state_ids TEXT[] NOT NULL
|
||||
);
|
||||
`
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue