mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
13 lines
285 B
Ruby
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
|