Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170503004125_add_last_repository_updated_at_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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