10 lines
240 B
Ruby
10 lines
240 B
Ruby
|
class AddRepositoriesPathEncoding < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :repositories, :path_encoding, :string, :limit => 64, :default => nil
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :repositories, :path_encoding
|
||
|
end
|
||
|
end
|