mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-22 13:42:33 +01:00
11 lines
354 B
Ruby
11 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
|