internetee-registry/db/migrate/20150413102310_create_bank_statements.rb
2021-04-26 18:54:26 +05:00

13 lines
290 B
Ruby

class CreateBankStatements < ActiveRecord::Migration[6.0]
def change
create_table :bank_statements do |t|
# t.string :subject_code
t.string :bank_code
t.string :iban
t.string :import_file_path
t.datetime :queried_at
t.timestamps
end
end
end