qi6_app/db/migrate/20190210124646_create_p_banks.rb
2019-05-17 12:30:45 +02:00

11 lines
187 B
Ruby

class CreatePBanks < ActiveRecord::Migration[6.0]
def change
create_table :p_banks do |t|
t.string :name
t.string :bic
t.timestamps null: false
end
end
end