gitlab-org--gitlab-foss/db/migrate/20170503004125_add_last_rep...

9 lines
219 B
Ruby

# rubocop:disable Migration/Datetime
class AddLastRepositoryUpdatedAtToProjects < ActiveRecord::Migration[4.2]
DOWNTIME = false
def change
add_column :projects, :last_repository_updated_at, :datetime
end
end