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