1 2 3 4 5 6 7 8 9 10
# This migration comes from mailboxer_engine (originally 20120813110712) class RenameReceiptsRead < ActiveRecord::Migration def up rename_column :receipts, :read, :is_read end def down rename_column :receipts, :is_read, :read end end