blob: 7201f74bfa0be130613d8be63c6d943e48d1f785 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddRepositoriesLogEncoding < ActiveRecord::Migration[4.2]
def self.up
add_column :repositories, :log_encoding, :string, :limit => 64, :default => nil
end
def self.down
remove_column :repositories, :log_encoding
end
end
|