summaryrefslogtreecommitdiffstats
path: root/db/migrate/20101114115359_change_projects_identifier_limit.rb
blob: 1e2bb6e1cc4fc36b92a780399d3e8349ce43616f (plain)
1
2
3
4
5
6
7
8
9
class ChangeProjectsIdentifierLimit < ActiveRecord::Migration[4.2]
  def self.up
    change_column :projects, :identifier, :string, :limit => nil
  end

  def self.down
    change_column :projects, :identifier, :string, :limit => 20
  end
end