diff db/migrate/20110207142856_add_ext_rep_to_repositories.rb @ 310:b9c2ba9e49b4 live

Merge from branch "feature_73"
author Chris Cannam
date Mon, 28 Mar 2011 17:50:25 +0100
parents 11661511fc20
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/db/migrate/20110207142856_add_ext_rep_to_repositories.rb	Mon Mar 28 17:50:25 2011 +0100
@@ -0,0 +1,11 @@
+class AddExtRepToRepositories < ActiveRecord::Migration
+  def self.up
+    add_column :repositories, :is_external, :bool
+    add_column :repositories, :external_url, :string
+  end
+
+  def self.down
+    remove_column :repositories, :is_external
+    remove_column :repositories, :external_url
+  end
+end