mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-20 23:02:09 +01:00
12 lines
295 B
JavaScript
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')
|
|
})
|
|
}
|