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

@@ -0,0 +1,13 @@
class CreateOgs < ActiveRecord::Migration[5.2]
def change
create_table :ogs do |t|
t.text :chip_name
t.text :chip_code
t.text :chip_symbol
t.boolean :chip_prefixed
t.integer :chip_scale
t.timestamps
end
end
end