gitlab-org--gitlab-foss/db/migrate/20160315135439_project_add_repository_check.rb

7 lines
226 B
Ruby
Raw Normal View History

2016-04-06 07:47:05 -04:00
class ProjectAddRepositoryCheck < ActiveRecord::Migration
def change
add_column :projects, :last_repository_check_failed, :boolean, default: false
add_column :projects, :last_repository_check_at, :datetime
end
end