Fix drawless_suites_query

It's not working-

test to add:


  it 'ignores suites that have both archived and unarchived draws' do
    drawn_with_archived_draw = create_suite_with_draw
    archived_draw = create(:draw, active: false)
    archived_draw.suites << drawn_with_archived_draw
    result = described_class.call
    expect(result).to eq([])
  end