Sha256: cec27859dad76996b7b3e17a06e14a1f7837ac1bb891fdba2f031b899c5df447
Contents?: true
Size: 350 Bytes
Versions: 18
Compression:
Stored size: 350 Bytes
Contents
# This migration comes from mailboxer_engine (originally 20110912163911) class AddNotificationCode < ActiveRecord::Migration def self.up change_table :notifications do |t| t.string :notification_code, :default => nil end end def self.down change_table :notifications do |t| t.remove :notification_code end end end
Version data entries
18 entries across 18 versions & 1 rubygems