mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-17 13:21:45 +01:00
* feat: add new lnurl processor * fix: lnbits issues * fix: add default settings for lnurl processor * fix: small changes * fix: more changes * fix: add verify url in upsert omit * fix: change comment * chore: add updateInvoiceStatus * chore: revert lnbits change * fix: changes
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
exports.up = function (knex) {
|
|
return knex.raw('ALTER TABLE invoices ADD verify_url TEXT;')
|
|
}
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable('invoices', function (table) {
|
|
table.dropColumn('verify_url')
|
|
})
|
|
}
|