1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(PostgreSQL): export tables

This commit is contained in:
2022-03-21 18:32:45 +01:00
parent 8f3efabb69
commit a67071e284
6 changed files with 499 additions and 6 deletions

View File

@ -570,7 +570,7 @@ export class PostgreSQLClient extends AntaresCore {
* @memberof MySQLClient
*/
async dropSchema (params) {
return await this.raw(`DROP SCHEMA "${params.database}"`);
return await this.raw(`DROP SCHEMA "${params.database}" CASCADE`);
}
/**