##// END OF EJS Templates
scm: add "path_encoding" column in repositories table (#2664, #2274)....
Toshi MARUYAMA -
r4820:4bf84ca468db
parent child
Show More
@@ -0,0 +1,9
1 class AddRepositoriesPathEncoding < ActiveRecord::Migration
2 def self.up
3 add_column :repositories, :path_encoding, :string, :limit => 64, :default => nil
4 end
5
6 def self.down
7 remove_column :repositories, :path_encoding
8 end
9 end
General Comments 0
You need to be logged in to leave comments. Login now