Sha256: 8376463eaafaff64148226ef3ededa1866b06a6a68d90289bc6a8a5702497f97
Contents?: true
Size: 718 Bytes
Versions: 23
Compression:
Stored size: 718 Bytes
Contents
# Changes `module_archs.module_detail_id` to `module_archs.detail_id` so that foreign key matches the conventional # name when `Mdm::ModuleDetail` became {Mdm::Module::Detail}. class ChangeForeignKeyInModuleArchs < ActiveRecord::Migration[4.2] # # CONSTANTS # NEW_COLUMN_NAME= :detail_id OLD_COLUMN_NAME = :module_detail_id TABLE_NAME = :module_archs # Renames `module_archs.detail_id` to `module_archs.module_detail_id`. # # @return [void] def down rename_column TABLE_NAME, NEW_COLUMN_NAME, OLD_COLUMN_NAME end # Rename `module_archs.module_detail_id` to `module_archs.detail_id` # # @return [void] def up rename_column TABLE_NAME, OLD_COLUMN_NAME, NEW_COLUMN_NAME end end
Version data entries
23 entries across 23 versions & 2 rubygems