- Corrige l'erreur SQL 'Unknown column fk_operation in users' - L'opération active est récupérée depuis operations.chk_active = 1 - Jointure avec users pour filtrer par entité de l'admin créateur - Query: SELECT o.id FROM operations o INNER JOIN users u ON u.fk_entite = o.fk_entite WHERE u.id = ? AND o.chk_active = 1
11 lines
322 B
PHP
Executable File
11 lines
322 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe\Exception;
|
|
|
|
/**
|
|
* UnknownApiErrorException is thrown when the client library receives an
|
|
* error from the API it doesn't know about. Receiving this error usually
|
|
* means that your client library is outdated and should be upgraded.
|
|
*/
|
|
class UnknownApiErrorException extends ApiErrorException {}
|