summaryrefslogtreecommitdiff
path: root/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
blob: 303250ff3b02d2fbf17d4a4c8eba8824f0292bb3 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable Migration/Datetime
class AddLastRepositoryUpdatedAtToProjects < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :projects, :last_repository_updated_at, :datetime
  end
end