handle onboarding and chip selection for Og

This commit is contained in:
Bilal
2020-09-18 19:13:04 +03:00
committed by Senad Uka
parent a9730dd69a
commit 8f75572b47
6 changed files with 79 additions and 3 deletions

View File

@@ -41,8 +41,6 @@ ActiveRecord::Schema.define(version: 2020_09_19_023237) do
t.text "about"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.bigint "chip_id"
t.index ["chip_id"], name: "index_homies_on_chip_id"
end
create_table "money_moves", force: :cascade do |t|
@@ -61,6 +59,16 @@ ActiveRecord::Schema.define(version: 2020_09_19_023237) do
t.datetime "updated_at", null: false
end
create_table "ogs", force: :cascade do |t|
t.text "chip_name"
t.text "chip_code"
t.text "chip_symbol"
t.boolean "chip_prefixed"
t.integer "chip_scale"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_foreign_key "chip_values", "chips", column: "base_chip_id"
add_foreign_key "chip_values", "chips", column: "secondary_chip_id"
end