summaryrefslogtreecommitdiff
path: root/db/migrate/20140424005436_add_attachments.mailboxer_engine.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-23 20:56:43 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-23 20:56:43 -0400
commit933199499f9adfa0347783c538a10b88ffb1b98b (patch)
treea0556abfa72742bdd19492cc68ee24c82113a03a /db/migrate/20140424005436_add_attachments.mailboxer_engine.rb
parent9b9f6ca15bd5523ce1cdcba363c5c88c777e561e (diff)
run ./generate.sh
Diffstat (limited to 'db/migrate/20140424005436_add_attachments.mailboxer_engine.rb')
-rw-r--r--db/migrate/20140424005436_add_attachments.mailboxer_engine.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20140424005436_add_attachments.mailboxer_engine.rb b/db/migrate/20140424005436_add_attachments.mailboxer_engine.rb
new file mode 100644
index 0000000..b8d6588
--- /dev/null
+++ b/db/migrate/20140424005436_add_attachments.mailboxer_engine.rb
@@ -0,0 +1,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