internetee-registry/db/migrate/20150413102310_create_bank_statements.rb
2015-04-14 13:55:33 +03:00

13 lines
285 B
Ruby

class CreateBankStatements < ActiveRecord::Migration
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