summaryrefslogtreecommitdiffstats
path: root/db/migrate/20120115143024_add_repositories_identifier.rb
blob: 263efbb6af52363d9a10a4d59e162512c3f30239 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: false

class AddRepositoriesIdentifier < ActiveRecord::Migration[4.2]
  def self.up
    add_column :repositories, :identifier, :string
  end

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