20110224000000_add_repositories_path_encoding.rb
9 lines
| 240 B
| text/x-ruby
|
RubyLexer
|
r4820 | 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 | ||||