summaryrefslogtreecommitdiff
path: root/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
blob: 00c685cf342fee2fad345d516c1f163d97adc088 (plain)
1
2
3
4
5
6
7
class AddLastRepositoryUpdatedAtToProjects < ActiveRecord::Migration
  DOWNTIME = false

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