Sha256: cb5d63cf9460732dbb26bfc95d25ef86e6e9dc9ba0cc6610c5897a76dbba6518
Contents?: true
Size: 277 Bytes
Versions: 37
Compression:
Stored size: 277 Bytes
Contents
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
37 entries across 19 versions & 3 rubygems