diff db/migrate/20110511000000_add_repositories_extra_info.rb @ 511:107d36338b70 live

Merge from branch "cannam"
author Chris Cannam
date Thu, 14 Jul 2011 10:43:07 +0100
parents cbce1fd3b1b7
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/db/migrate/20110511000000_add_repositories_extra_info.rb	Thu Jul 14 10:43:07 2011 +0100
@@ -0,0 +1,9 @@
+class AddRepositoriesExtraInfo < ActiveRecord::Migration
+  def self.up
+    add_column :repositories, :extra_info, :text
+  end
+
+  def self.down
+    remove_column :repositories, :extra_info
+  end
+end