mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 22:06:32 +01:00
12 lines
354 B
Ruby
12 lines
354 B
Ruby
|
class CreateTxConfirmationsTable < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table "tx_confirmations", force: :cascade do |t|
|
||
|
t.datetime "created_at"
|
||
|
t.integer "order_id"
|
||
|
t.integer "region_id"
|
||
|
t.boolean "presumed", default: false
|
||
|
t.index ["order_id"], name: "index_tx_confirmations_on_order_id"
|
||
|
end
|
||
|
end
|
||
|
end
|