blob: b8d658886407f7acb393d3c27f60ebbe130bf6bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
# This migration comes from mailboxer_engine (originally 20111204163911)
class AddAttachments < ActiveRecord::Migration
def self.up
add_column :notifications, :attachment, :string
end
def self.down
remove_column :notifications, :attachment
end
end
|