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

Merge pull request #208 from antares-sql/feat/postgre-import-export

feat(PostgreSQL): import/export
This commit is contained in:
2022-04-07 17:56:37 +02:00
committed by GitHub
15 changed files with 779 additions and 39 deletions

View File

@ -572,7 +572,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`);
}
/**