scm: add log_encoding column to repositories table (#1735).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4980 e93f8b46-1217-0410-a6f0-8f06a7374b81pull/351/head
parent
aae9747e65
commit
ab8bdf282b
@ -0,0 +1,9 @@ |
|||||||
|
class AddRepositoriesLogEncoding < ActiveRecord::Migration |
||||||
|
def self.up |
||||||
|
add_column :repositories, :log_encoding, :string, :limit => 64, :default => nil |
||||||
|
end |
||||||
|
|
||||||
|
def self.down |
||||||
|
remove_column :repositories, :log_encoding |
||||||
|
end |
||||||
|
end |
Loading…
Reference in new issue