summaryrefslogtreecommitdiffstats
path: root/db/migrate/20120115143024_add_repositories_identifier.rb
blob: 28af22120da83ac42f403238b80ad957f2b62285 (plain)
1
2
3
4
5
6
7
8
9
class AddRepositoriesIdentifier < ActiveRecord::Migration[4.2]
  def self.up
    add_column :repositories, :identifier, :string
  end

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