2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2016-04-06 07:47:05 -04:00
|
|
|
class ProjectAddRepositoryCheck < ActiveRecord::Migration
|
|
|
|
def change
|
2016-04-13 11:07:12 -04:00
|
|
|
add_column :projects, :last_repository_check_failed, :boolean
|
|
|
|
add_index :projects, :last_repository_check_failed
|
|
|
|
|
2016-04-06 07:47:05 -04:00
|
|
|
add_column :projects, :last_repository_check_at, :datetime
|
|
|
|
end
|
|
|
|
end
|