blob: df57809c7d712a5f36f7129b832d23697dc3eb45 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|