mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 14:00:26 +01:00
6 lines
173 B
Ruby
6 lines
173 B
Ruby
class AddExpiresAtToInvoices < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :invoices, :expires_at, :datetime
|
|
add_index :invoices, :expires_at
|
|
end
|
|
end
|