blockstream-satellite-api/db/schema.rb

74 lines
2.6 KiB
Ruby
Raw Normal View History

2019-01-16 10:22:44 -08:00
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2019_05_17_065237) do
2019-01-16 10:22:44 -08:00
create_table "invoices", force: :cascade do |t|
t.string "lid"
t.string "invoice", limit: 1024
t.datetime "paid_at"
t.datetime "created_at"
t.integer "order_id"
t.integer "status"
t.integer "amount"
t.datetime "expires_at"
t.index ["expires_at"], name: "index_invoices_on_expires_at"
t.index ["lid"], name: "index_invoices_on_lid", unique: true
t.index ["order_id"], name: "index_invoices_on_order_id"
t.index ["status"], name: "index_invoices_on_status"
end
create_table "orders", force: :cascade do |t|
t.integer "bid"
t.integer "message_size"
t.float "bid_per_byte"
t.string "message_digest", limit: 64
t.integer "status"
t.string "uuid", limit: 36
t.datetime "created_at"
t.datetime "cancelled_at"
t.datetime "started_transmission_at"
t.datetime "ended_transmission_at"
t.integer "tx_seq_num"
t.integer "unpaid_bid"
t.index ["bid_per_byte"], name: "index_orders_on_bid_per_byte"
t.index ["tx_seq_num"], name: "index_orders_on_tx_seq_num", unique: true
t.index ["uuid"], name: "index_orders_on_uuid", unique: true
end
create_table "regions", force: :cascade do |t|
t.datetime "created_at"
t.integer "number"
t.string "satellite_name"
t.string "coverage"
t.boolean "has_receiver", default: false
t.index ["number"], name: "index_region_on_number", unique: true
end
create_table "rx_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_rx_confirmations_on_order_id"
end
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
2019-01-16 10:22:44 -08:00
end