summaryrefslogtreecommitdiff
path: root/db/migrate/20141201153755_remove_invalid_build.rb
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