Sha256: 24b8cc839daa7d69f79782943abbd11565f6330cc33b07d5f2dcfe98e7460c0d

Contents?: true

Size: 203 Bytes

Versions: 1

Compression:

Stored size: 203 Bytes

Contents

class AddAttachments < ActiveRecord::Migration
  def self.up
    add_column :notifications, :attachment, :string
  end
  
  def self.down
    remove_column :notifications, :attachment, :string
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mailboxer-0.8.0 db/migrate/20111204163911_add_attachments.rb