mmsc_app/migrations/00570_create_p_banks.rb
Nicolas Bally a6aa1f6074 Initial
2020-05-25 11:40:11 +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
end
end
end