BigW Consortium Gitlab

20160315135439_project_add_repository_check.rb 288 Bytes
Newer Older
1
# rubocop:disable all
2 3
class ProjectAddRepositoryCheck < ActiveRecord::Migration
  def change
4 5 6
    add_column :projects, :last_repository_check_failed, :boolean
    add_index :projects, :last_repository_check_failed

7 8 9
    add_column :projects, :last_repository_check_at, :datetime
  end
end