Updates
This commit is contained in:
@@ -64,7 +64,7 @@ export default async function checkDbRecordCreateDbSchema({
|
||||
forceLocal: true,
|
||||
});
|
||||
|
||||
if (newDbEntry.payload?.insertId) {
|
||||
if (newDbEntry.postInsertReturn?.insertId) {
|
||||
recordedDbEntryArray = (await dbHandler({
|
||||
query: `SELECT * FROM datasquirel.user_databases WHERE db_full_name = ?`,
|
||||
values: [dbFullName || "NULL"],
|
||||
|
||||
@@ -97,7 +97,7 @@ export default async function checkTableRecordCreateDbSchema({
|
||||
forceLocal: true,
|
||||
});
|
||||
|
||||
if (newTableRecordEntry.payload?.insertId) {
|
||||
if (newTableRecordEntry.postInsertReturn?.insertId) {
|
||||
recordedTableEntryArray = (await dbHandler({
|
||||
query: queryObj?.string || "",
|
||||
values: queryObj?.values,
|
||||
|
||||
Reference in New Issue
Block a user