Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20141201153755_remove_invalid_build.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3a650359e323c6381be38c007f9e72adb8500cd (plain)
1
2
3
4
5
class RemoveInvalidBuild < ActiveRecord::Migration
  def change
    execute "DELETE FROM builds WHERE commit_id is NULL"
  end
end