2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2018-11-13 02:27:31 -05:00
|
|
|
class ProjectAddRepositoryCheck < ActiveRecord::Migration[4.2]
|
2016-04-06 07:47:05 -04:00
|
|
|
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
|