about summary refs log tree commit diff
path: root/db/migrate/20160227230233_add_attachment_avatar_to_accounts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160227230233_add_attachment_avatar_to_accounts.rb')
-rw-r--r--db/migrate/20160227230233_add_attachment_avatar_to_accounts.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20160227230233_add_attachment_avatar_to_accounts.rb b/db/migrate/20160227230233_add_attachment_avatar_to_accounts.rb
new file mode 100644
index 000000000..99d88e5ec
--- /dev/null
+++ b/db/migrate/20160227230233_add_attachment_avatar_to_accounts.rb
@@ -0,0 +1,11 @@
+class AddAttachmentAvatarToAccounts < ActiveRecord::Migration
+  def self.up
+    change_table :accounts do |t|
+      t.attachment :avatar
+    end
+  end
+
+  def self.down
+    remove_attachment :accounts, :avatar
+  end
+end