nostream/migrations/20221030_134400_add_deduplication_to_events_table.js
2022-11-08 23:52:31 -05:00

12 lines
295 B
JavaScript

exports.up = function (knex) {
return knex.schema.alterTable('events', function (table) {
table.jsonb('event_deduplication').nullable()
})
}
exports.down = function (knex) {
return knex.schema.alterTable('events', function (table) {
table.dropColumn('event_deduplication')
})
}