blob: 96ac761e44131647fabaae14b8fd7915267357eb (
plain)
1
2
3
4
5
6
7
8
9
|
class AddRepositoryRootUrl < ActiveRecord::Migration[4.2]
def self.up
add_column :repositories, :root_url, :string, :limit => 255, :default => ""
end
def self.down
remove_column :repositories, :root_url
end
end
|