summaryrefslogtreecommitdiffstats
path: root/db/migrate/037_add_project_identifier.rb
blob: 0fd8c7513b34ae02b3e59853bc665868cdaf9173 (plain)
1
2
3
4
5
6
7
8
9
class AddProjectIdentifier < ActiveRecord::Migration
  def self.up
    add_column :projects, :identifier, :string, :limit => 20
  end

  def self.down
    remove_column :projects, :identifier
  end
end