Vendorize prosemirror-recreate-transform (#5861)

This commit is contained in:
Tom Moor
2023-09-21 08:44:23 -04:00
committed by GitHub
parent 6672536cde
commit 89537aabc3
16 changed files with 606 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ module.exports = async function () {
const sql = sequelize.getQueryInterface();
const tables = Object.keys(sequelize.models).map((model) => {
const n = sequelize.models[model].getTableName();
return (sql.queryGenerator as any).quoteTable(
return sql.queryGenerator.quoteTable(
typeof n === "string" ? n : n.tableName
);
});