mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
13 lines
289 B
Ruby
13 lines
289 B
Ruby
class CreateAccountActivities < ActiveRecord::Migration
|
|
def change
|
|
create_table :account_activites do |t|
|
|
t.integer :account_id
|
|
t.integer :invoice_id
|
|
t.decimal :sum
|
|
t.string :currency
|
|
t.integer :bank_transaction_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|