sequelize
Advanced tools
Comparing version 6.29.1 to 6.29.2
@@ -49,8 +49,8 @@ "use strict"; | ||
if (databaseVersion && semver.gte(databaseVersion, "9.2.0")) { | ||
return `CREATE SCHEMA IF NOT EXISTS ${schema};`; | ||
return `CREATE SCHEMA IF NOT EXISTS ${this.quoteIdentifier(schema)};`; | ||
} | ||
return `CREATE SCHEMA ${schema};`; | ||
return `CREATE SCHEMA ${this.quoteIdentifier(schema)};`; | ||
} | ||
dropSchema(schema) { | ||
return `DROP SCHEMA IF EXISTS ${schema} CASCADE;`; | ||
return `DROP SCHEMA IF EXISTS ${this.quoteIdentifier(schema)} CASCADE;`; | ||
} | ||
@@ -57,0 +57,0 @@ showSchemasQuery() { |
{ | ||
"name": "sequelize", | ||
"description": "Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift and Snowflake’s Data Cloud. It features solid transaction support, relations, eager and lazy loading, read replication and more.", | ||
"version": "6.29.1", | ||
"version": "6.29.2", | ||
"funding": [ | ||
@@ -6,0 +6,0 @@ { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2881628