summaryrefslogtreecommitdiff
path: root/db/migrate/20110928161328_add_attachment_to_note.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20110928161328_add_attachment_to_note.rb')
-rw-r--r--db/migrate/20110928161328_add_attachment_to_note.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20110928161328_add_attachment_to_note.rb b/db/migrate/20110928161328_add_attachment_to_note.rb
new file mode 100644
index 00000000000..37d9cf10258
--- /dev/null
+++ b/db/migrate/20110928161328_add_attachment_to_note.rb
@@ -0,0 +1,5 @@
+class AddAttachmentToNote < ActiveRecord::Migration
+ def change
+ add_column :notes, :attachment, :string
+ end
+end