view db/migrate/20110228000000_add_repositories_log_encoding.rb @ 1534:b31caaed9d4d live

Look up users by name as well as email/login: for use with #1136
author Chris Cannam
date Wed, 11 Feb 2015 14:19:20 +0000
parents 051f544170fe
children
line wrap: on
line source
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