mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-17 13:21:45 +01:00
13 lines
333 B
JavaScript
13 lines
333 B
JavaScript
exports.up = function (knex) {
|
|
// NIP-26: Delegated Event Signing
|
|
return knex.schema.alterTable('events', function (table) {
|
|
table.binary('event_delegator').nullable().index()
|
|
})
|
|
}
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable('events', function (table) {
|
|
table.dropColumn('event_delegator')
|
|
})
|
|
}
|