Files
old-roraccounting/db/migrate/20200918032033_create_ogs.rb
2020-10-06 10:36:23 +03:00

13 lines
259 B
Ruby

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