Sha256: c438ba9e1e587df6e8a864577de55e704c01e46cbc7f29b0c6e5853ca6419b9c
Contents?: true
Size: 837 Bytes
Versions: 3
Compression:
Stored size: 837 Bytes
Contents
class UpdatePlutusTables < ActiveRecord::Migration def change # we have to remove these indexes because the temporary # table index name is too long remove_index :plutus_amounts, [:account_id, :transaction_id] remove_index :plutus_amounts, [:transaction_id, :account_id] remove_index :plutus_transactions, column: [:commercial_document_id, :commercial_document_type], :name => "index_transactions_on_commercial_doc" rename_table :plutus_transactions, :plutus_entries rename_column :plutus_amounts, :transaction_id, :entry_id # adding the indexes back add_index :plutus_amounts, [:account_id, :entry_id] add_index :plutus_amounts, [:entry_id, :account_id] add_index :plutus_entries, [:commercial_document_id, :commercial_document_type], :name => "index_entries_on_commercial_doc" end end
Version data entries
3 entries across 3 versions & 1 rubygems