Sha256: a372a70f1177eac028bc339329f9775a919c9fc5308b500e4fec2008a3b387fe
Contents?: true
Size: 230 Bytes
Versions: 28
Compression:
Stored size: 230 Bytes
Contents
class RenameCouponsToPromotions < ActiveRecord::Migration def up drop_table :promotions if table_exists?(:promotions) rename_table :coupons, :promotions end def down rename_table :promotions, :coupons end end
Version data entries
28 entries across 28 versions & 1 rubygems