Как я могу сопоставить null в активной записи rails.
User.where(['id = ? and active = ? and activation_code = ?', params[:id], 0, NULL]).first
или
User.where(['id = ? and active = ? and activation_code = ?', params[:id], 0, nil]).first
Оба не работают.