socialforge/db/migrate/031_add_repository_root_url.rb

10 lines
223 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class AddRepositoryRootUrl < ActiveRecord::Migration
def self.up
add_column :repositories, :root_url, :string, :limit => 255, :default => ""
end
def self.down
remove_column :repositories, :root_url
end
end