Skip to content
Snippets Groups Projects
20110224000000_add_repositories_path_encoding.rb 240 B
Newer Older
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