events-backend: rename column consumed_by -> notified_subscribers

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-09-20 11:42:20 +02:00
parent ca3587e81d
commit 3bd926905e
4 changed files with 7 additions and 7 deletions
@@ -44,7 +44,7 @@ exports.up = async function up(knex) {
.notNullable()
.comment('The payload data of this event');
table
.specificType('consumed_by', 'text ARRAY')
.specificType('notified_subscribers', 'text ARRAY')
.comment(
'The IDs of the subscribers that have already consumed this event',
);