Sha256: 3a23d5ac3155fc6f0f93d167382bbb788a883f678ef8128de6ce4e25b0d6f6d9
Contents?: true
Size: 458 Bytes
Versions: 16
Compression:
Stored size: 458 Bytes
Contents
class RenameCreatedByUpdatedByColumns < ActiveRecord::Migration[5.1] def self.up %w{pages snippets layouts users}.each do |table| rename_column table, :created_by, :created_by_id rename_column table, :updated_by, :updated_by_id end end def self.down %w{pages snippets layouts users}.each do |table| rename_column table, :created_by_id, :created_by rename_column table, :updated_by_id, :updated_by end end end
Version data entries
16 entries across 16 versions & 1 rubygems