mirror of
https://github.com/internetee/registry.git
synced 2025-08-02 07:52:04 +02:00
14 lines
302 B
Ruby
14 lines
302 B
Ruby
class CreateBankStatements < ActiveRecord::Migration
|
|
def change
|
|
create_table :bank_statements do |t|
|
|
t.string :subject_code
|
|
t.string :bank_code
|
|
t.string :account_number
|
|
t.date :date
|
|
t.time :time
|
|
t.string :import_file_path
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|