mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 03:46:19 +01:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
|
|
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
|