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

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