summaryrefslogtreecommitdiffstats
path: root/db/migrate/20110224000000_add_repositories_path_encoding.rb
blob: 23c16d26dd5e5fa764fd53f74202cb6151710ff8 (plain)
1
2
3
4
5
6
7
8
9
class AddRepositoriesPathEncoding < ActiveRecord::Migration[4.2]
  def self.up
    add_column :repositories, :path_encoding, :string, :limit => 64, :default => nil
  end

  def self.down
    remove_column :repositories, :path_encoding
  end
end