updates
This commit is contained in:
parent
9007c3504d
commit
e913c7018b
@ -6,6 +6,7 @@ const encrypt = require("../../functions/encrypt");
|
|||||||
const handler = require("../utils/handler");
|
const handler = require("../utils/handler");
|
||||||
const sanitizeHtml = require("sanitize-html");
|
const sanitizeHtml = require("sanitize-html");
|
||||||
const sanitizeHtmlOptions = require("../utils/sanitizeHtmlOptions");
|
const sanitizeHtmlOptions = require("../utils/sanitizeHtmlOptions");
|
||||||
|
const updateDb = require("./updateDb");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a db Entry Function
|
* Add a db Entry Function
|
||||||
@ -53,7 +54,19 @@ module.exports = async function add({ dbFullName, tableName, data, tableSchema,
|
|||||||
if (duplicateValue && duplicateValue[0] && !update) {
|
if (duplicateValue && duplicateValue[0] && !update) {
|
||||||
return null;
|
return null;
|
||||||
} else if (duplicateValue && duplicateValue[0] && update) {
|
} else if (duplicateValue && duplicateValue[0] && update) {
|
||||||
return await update();
|
return await updateDb({
|
||||||
|
dbFullName,
|
||||||
|
tableName,
|
||||||
|
data,
|
||||||
|
tableSchema,
|
||||||
|
identifierColumnName: duplicateColumnName,
|
||||||
|
identifierValue: duplicateColumnValue,
|
||||||
|
dbHost,
|
||||||
|
dbPassword,
|
||||||
|
dbUsername,
|
||||||
|
encryptionKey,
|
||||||
|
encryptionSalt,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
} else if (duplicateColumnName && typeof duplicateColumnName === "object" && duplicateColumnValue && typeof duplicateColumnValue === "object") {
|
} else if (duplicateColumnName && typeof duplicateColumnName === "object" && duplicateColumnValue && typeof duplicateColumnValue === "object") {
|
||||||
const duplicateArray = duplicateColumnName.map((dupColName, index) => {
|
const duplicateArray = duplicateColumnName.map((dupColName, index) => {
|
||||||
|
74
engine/db/deleteDb.js
Normal file
74
engine/db/deleteDb.js
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
/**
|
||||||
|
* Imports: Handle imports
|
||||||
|
*/
|
||||||
|
const handler = require("../utils/handler");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete DB Entry Function
|
||||||
|
* ==============================================================================
|
||||||
|
* @description Description
|
||||||
|
*
|
||||||
|
* @param {object} params - An object containing the function parameters.
|
||||||
|
* @param {string} params.dbFullName - Database full name
|
||||||
|
* @param {string} params.tableName - Table name
|
||||||
|
* @param {DSQL_TableSchemaType?} params.tableSchema - Table schema
|
||||||
|
* @param {string} params.identifierColumnName - Update row identifier column name
|
||||||
|
* @param {string|number} params.identifierValue - Update row identifier column value
|
||||||
|
* @param {boolean?} params.update - Update this row if it exists
|
||||||
|
* @param {string?} params.dbHost - Database host
|
||||||
|
* @param {string?} params.dbPassword - Database password
|
||||||
|
* @param {string?} params.dbUsername - Database username
|
||||||
|
* @param {string?} params.encryptionKey - Encryption key
|
||||||
|
* @param {string?} params.encryptionSalt - Encryption salt
|
||||||
|
*
|
||||||
|
* @returns {object}
|
||||||
|
*/
|
||||||
|
module.exports = async function deleteDb({ dbFullName, tableName, tableSchema, identifierColumnName, identifierValue, dbHost, dbPassword, dbUsername, encryptionKey, encryptionSalt }) {
|
||||||
|
try {
|
||||||
|
/**
|
||||||
|
* Check if data is valid
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execution
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
*/
|
||||||
|
const query = `DELETE FROM ${tableName} WHERE \`${identifierColumnName}\`=?`;
|
||||||
|
|
||||||
|
const deletedEntry = await handler({
|
||||||
|
queryString: query,
|
||||||
|
database: dbFullName,
|
||||||
|
queryValuesArray: [identifierValue],
|
||||||
|
dbHost,
|
||||||
|
dbPassword,
|
||||||
|
dbUsername,
|
||||||
|
encryptionKey,
|
||||||
|
encryptionSalt,
|
||||||
|
tableSchema,
|
||||||
|
});
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return statement
|
||||||
|
*/
|
||||||
|
return deletedEntry;
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
} catch (error) {
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
@ -1,127 +0,0 @@
|
|||||||
const fs = require("fs");
|
|
||||||
const dbHandler = require("../dbHandler");
|
|
||||||
|
|
||||||
/** ****************************************************************************** */
|
|
||||||
/** ****************************************************************************** */
|
|
||||||
/** ****************************************************************************** */
|
|
||||||
/** ****************************************************************************** */
|
|
||||||
/** ****************************************************************************** */
|
|
||||||
/** ****************************************************************************** */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add Database Entry
|
|
||||||
* ==============================================================================
|
|
||||||
* @param {object} params - foundUser if any
|
|
||||||
* @param {string} params.tableName - Table Name
|
|
||||||
* @param {object} params.data - Data to be added
|
|
||||||
* @param {string?} params.duplicateColumnName - Duplicate Column Name
|
|
||||||
* @param {string | number?} params.duplicateColumnValue - Duplicate Column Value
|
|
||||||
*
|
|
||||||
* @returns {object}
|
|
||||||
*/
|
|
||||||
async function addDbEntry({ tableName, data, duplicateColumnName, duplicateColumnValue }) {
|
|
||||||
/**
|
|
||||||
* Check Duplicate if specified
|
|
||||||
*
|
|
||||||
* @description Check Duplicate if specified
|
|
||||||
*/
|
|
||||||
if (duplicateColumnName) {
|
|
||||||
let duplicateEntry = await dbHandler(`SELECT ${duplicateColumnName} FROM ${tableName} WHERE ${duplicateColumnName}='${duplicateColumnValue}'`);
|
|
||||||
|
|
||||||
if (duplicateEntry && duplicateEntry[0]) return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Declare variables
|
|
||||||
*
|
|
||||||
* @description Declare "results" variable
|
|
||||||
*/
|
|
||||||
const dataKeys = Object.keys(data);
|
|
||||||
|
|
||||||
let insertKeysArray = [];
|
|
||||||
let insertValuesArray = [];
|
|
||||||
|
|
||||||
for (let i = 0; i < dataKeys.length; i++) {
|
|
||||||
const dataKey = dataKeys[i];
|
|
||||||
let dataValue = data[dataKey];
|
|
||||||
// const correspondingColumnObject = dbColumns.filter((col) => col.Field === dataKey);
|
|
||||||
// const { Field, Type, Null, Key, Default, Extra } = correspondingColumnObject;
|
|
||||||
|
|
||||||
if (!dataValue) continue;
|
|
||||||
|
|
||||||
insertKeysArray.push("`" + dataKey + "`");
|
|
||||||
|
|
||||||
if (typeof dataValue === "object") {
|
|
||||||
dataValue = JSON.stringify(data[dataKey]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// let parsedDataValue = dataValue.toString().replace(/\'/g, "\\'");
|
|
||||||
|
|
||||||
insertValuesArray.push(dataValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
let existingDateCreatedColumn = await dbHandler(`SHOW COLUMNS FROM \`${tableName}\` WHERE Field = 'date_created'`);
|
|
||||||
if (!existingDateCreatedColumn || !existingDateCreatedColumn[0]) {
|
|
||||||
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_created VARCHAR(255) NOT NULL`);
|
|
||||||
}
|
|
||||||
|
|
||||||
insertKeysArray.push("date_created");
|
|
||||||
insertValuesArray.push(Date());
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
let existingDateCreatedCodeColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_created_code'`);
|
|
||||||
if (!existingDateCreatedCodeColumn || !existingDateCreatedCodeColumn[0]) {
|
|
||||||
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_created_code BIGINT NOT NULL`);
|
|
||||||
}
|
|
||||||
|
|
||||||
insertKeysArray.push("date_created_code");
|
|
||||||
insertValuesArray.push(Date.now());
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
let existingDateCodeColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_code'`);
|
|
||||||
if (existingDateCodeColumn && existingDateCodeColumn[0]) {
|
|
||||||
insertKeysArray.push("date_code");
|
|
||||||
insertValuesArray.push(Date.now());
|
|
||||||
}
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
/** ********************************************** */
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
let existingDateUpdatedColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_updated'`);
|
|
||||||
if (!existingDateUpdatedColumn || !existingDateUpdatedColumn[0]) {
|
|
||||||
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_updated VARCHAR(255) NOT NULL`);
|
|
||||||
}
|
|
||||||
|
|
||||||
insertKeysArray.push("date_updated");
|
|
||||||
insertValuesArray.push(Date());
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
let existingDateUpdatedCodeColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_updated_code'`);
|
|
||||||
if (!existingDateUpdatedCodeColumn || !existingDateUpdatedCodeColumn[0]) {
|
|
||||||
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_updated_code BIGINT NOT NULL`);
|
|
||||||
}
|
|
||||||
|
|
||||||
insertKeysArray.push("date_updated_code");
|
|
||||||
insertValuesArray.push(Date.now());
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
const query = `INSERT INTO ${tableName} (${insertKeysArray.join(",")}) VALUES (${insertValuesArray.map((val) => "?").join(",")})`;
|
|
||||||
const queryValuesArray = insertValuesArray;
|
|
||||||
|
|
||||||
const newInsert = await dbHandler(query, queryValuesArray);
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
return newInsert;
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
/** ********************************************** */
|
|
||||||
/** ********************************************** */
|
|
||||||
}
|
|
@ -1,139 +0,0 @@
|
|||||||
/**
|
|
||||||
* Imports: Handle imports
|
|
||||||
*/
|
|
||||||
|
|
||||||
const handler = require("../utils/handler");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update DB Function
|
|
||||||
* ==============================================================================
|
|
||||||
* @description Description
|
|
||||||
*
|
|
||||||
* @param {object} params - An object containing the function parameters.
|
|
||||||
* @param {string} params.dbFullName - Database full name
|
|
||||||
* @param {string} params.tableName - Table name
|
|
||||||
* @param {object} params.data - Data to add
|
|
||||||
* @param {DSQL_TableSchemaType?} params.tableSchema - Table schema
|
|
||||||
* @param {string} params.identifierColumnName - Update row identifier column name
|
|
||||||
* @param {string|number} params.identifierValue - Update row identifier column value
|
|
||||||
* @param {boolean?} params.update - Update this row if it exists
|
|
||||||
* @param {string?} params.dbHost - Database host
|
|
||||||
* @param {string?} params.dbPassword - Database password
|
|
||||||
* @param {string?} params.dbUsername - Database username
|
|
||||||
* @param {string?} params.encryptionKey - Encryption key
|
|
||||||
* @param {string?} params.encryptionSalt - Encryption salt
|
|
||||||
*
|
|
||||||
* @returns {object}
|
|
||||||
*/
|
|
||||||
module.exports = async function update({ dbFullName, tableName, data, tableSchema, identifierColumnName, identifierValue, update, dbHost, dbPassword, dbUsername, encryptionKey, encryptionSalt }) {
|
|
||||||
/**
|
|
||||||
* Initialize variables
|
|
||||||
*/
|
|
||||||
|
|
||||||
////////////////////////////////////////
|
|
||||||
////////////////////////////////////////
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle function logic
|
|
||||||
*/
|
|
||||||
if (duplicateColumnName && typeof duplicateColumnName === "string") {
|
|
||||||
const duplicateValue = await handler({
|
|
||||||
queryString: `SELECT * FROM \`${tableName}\` WHERE \`${duplicateColumnName}\`=?`,
|
|
||||||
queryValuesArray: [duplicateColumnValue],
|
|
||||||
database: dbFullName,
|
|
||||||
dbHost,
|
|
||||||
dbPassword,
|
|
||||||
dbUsername,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (duplicateValue && duplicateValue[0] && !update) {
|
|
||||||
return null;
|
|
||||||
} else if (duplicateValue && duplicateValue[0] && update) {
|
|
||||||
return await update();
|
|
||||||
}
|
|
||||||
} else if (duplicateColumnName && typeof duplicateColumnName === "object" && duplicateColumnValue && typeof duplicateColumnValue === "object") {
|
|
||||||
const duplicateArray = duplicateColumnName.map((dupColName, index) => {
|
|
||||||
return `\`${dupColName}\`='${duplicateColumnValue[index]}'`;
|
|
||||||
});
|
|
||||||
|
|
||||||
const duplicateValue = await handler({
|
|
||||||
queryString: `SELECT * FROM ${tableName} WHERE ${duplicateArray.join(" AND ")}`,
|
|
||||||
database: dbFullName,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (duplicateValue && duplicateValue[0] && !update) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Declare variables
|
|
||||||
*
|
|
||||||
* @description Declare "results" variable
|
|
||||||
*/
|
|
||||||
const dataKeys = Object.keys(data);
|
|
||||||
|
|
||||||
let insertKeysArray = [];
|
|
||||||
let insertValuesArray = [];
|
|
||||||
|
|
||||||
for (let i = 0; i < dataKeys.length; i++) {
|
|
||||||
const dataKey = dataKeys[i];
|
|
||||||
// const correspondingColumnObject = dbColumns.filter((col) => col.Field === dataKey);
|
|
||||||
// const { Field, Type, Null, Key, Default, Extra } = correspondingColumnObject;
|
|
||||||
let value = data[dataKey];
|
|
||||||
|
|
||||||
const targetFieldSchemaArray = tableSchema ? tableSchema?.fields.filter((field) => field.fieldName === dataKey) : null;
|
|
||||||
const targetFieldSchema = targetFieldSchemaArray && targetFieldSchemaArray[0] ? targetFieldSchemaArray[0] : null;
|
|
||||||
|
|
||||||
if (!value) continue;
|
|
||||||
|
|
||||||
if (targetFieldSchema?.encrypted) {
|
|
||||||
value = await encrypt(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (targetFieldSchema?.richText) {
|
|
||||||
value = sanitizeHtml(value, sanitizeHtmlOptions).replace(/\n|\r|\n\r/gm, "");
|
|
||||||
}
|
|
||||||
|
|
||||||
insertKeysArray.push("`" + dataKey + "`");
|
|
||||||
|
|
||||||
let parsedDataValue = value.toString().replace(/(?<!\\)\'/g, "\\'");
|
|
||||||
|
|
||||||
insertValuesArray.push("'" + parsedDataValue + "'");
|
|
||||||
}
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
insertKeysArray.push("date_created");
|
|
||||||
insertValuesArray.push("'" + Date() + "'");
|
|
||||||
|
|
||||||
insertKeysArray.push("date_created_code");
|
|
||||||
insertValuesArray.push("'" + Date.now() + "'");
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
insertKeysArray.push("date_updated");
|
|
||||||
insertValuesArray.push("'" + Date() + "'");
|
|
||||||
|
|
||||||
insertKeysArray.push("date_updated_code");
|
|
||||||
insertValuesArray.push("'" + Date.now() + "'");
|
|
||||||
|
|
||||||
/** ********************************************** */
|
|
||||||
|
|
||||||
const query = `INSERT INTO ${tableName} (${insertKeysArray.join(",")}) VALUES (${insertValuesArray.join(",")})`;
|
|
||||||
|
|
||||||
const newInsert = await handler({
|
|
||||||
queryString: query,
|
|
||||||
database: dbFullName,
|
|
||||||
});
|
|
||||||
|
|
||||||
////////////////////////////////////////
|
|
||||||
////////////////////////////////////////
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return statement
|
|
||||||
*/
|
|
||||||
return newInsert;
|
|
||||||
};
|
|
91
engine/db/updateDb.js
Normal file
91
engine/db/updateDb.js
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
/**
|
||||||
|
* Imports: Handle imports
|
||||||
|
*/
|
||||||
|
const handler = require("../utils/handler");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update DB Function
|
||||||
|
* ==============================================================================
|
||||||
|
* @description Description
|
||||||
|
*
|
||||||
|
* @param {object} params - An object containing the function parameters.
|
||||||
|
* @param {string} params.dbFullName - Database full name
|
||||||
|
* @param {string} params.tableName - Table name
|
||||||
|
* @param {object} params.data - Data to add
|
||||||
|
* @param {DSQL_TableSchemaType?} params.tableSchema - Table schema
|
||||||
|
* @param {string} params.identifierColumnName - Update row identifier column name
|
||||||
|
* @param {string|number} params.identifierValue - Update row identifier column value
|
||||||
|
* @param {boolean?} params.update - Update this row if it exists
|
||||||
|
* @param {string?} params.dbHost - Database host
|
||||||
|
* @param {string?} params.dbPassword - Database password
|
||||||
|
* @param {string?} params.dbUsername - Database username
|
||||||
|
* @param {string?} params.encryptionKey - Encryption key
|
||||||
|
* @param {string?} params.encryptionSalt - Encryption salt
|
||||||
|
*
|
||||||
|
* @returns {object}
|
||||||
|
*/
|
||||||
|
module.exports = async function updateDb({ dbFullName, tableName, data, tableSchema, identifierColumnName, identifierValue, dbHost, dbPassword, dbUsername, encryptionKey, encryptionSalt }) {
|
||||||
|
/**
|
||||||
|
* Check if data is valid
|
||||||
|
*/
|
||||||
|
if (!data || !Object.keys(data).length) return null;
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
const dataKeys = Object.keys(data);
|
||||||
|
|
||||||
|
let updateKeyValueArray = [];
|
||||||
|
let updateValues = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < dataKeys.length; i++) {
|
||||||
|
const dataKey = dataKeys[i];
|
||||||
|
|
||||||
|
let value = data[dataKey];
|
||||||
|
|
||||||
|
if (typeof value === "string" && value.match(/^null$/i)) value = "";
|
||||||
|
|
||||||
|
if (!value && value != 0) continue;
|
||||||
|
|
||||||
|
updateKeyValueArray.push(`\`${dataKey}\`=?`);
|
||||||
|
updateValues.push(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
updateKeyValueArray.push(`date_updated='${Date()}'`);
|
||||||
|
updateKeyValueArray.push(`date_updated_code='${Date.now()}'`);
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
const query = `UPDATE ${tableName} SET ${updateKeyValueArray.join(",")} WHERE \`${identifierColumnName}\`=?`;
|
||||||
|
|
||||||
|
updateValues.push(identifierValue);
|
||||||
|
|
||||||
|
const updatedEntry = await handler({
|
||||||
|
queryString: query,
|
||||||
|
database: dbFullName,
|
||||||
|
queryValuesArray: updateValues,
|
||||||
|
dbHost,
|
||||||
|
dbPassword,
|
||||||
|
dbUsername,
|
||||||
|
encryptionKey,
|
||||||
|
encryptionSalt,
|
||||||
|
tableSchema,
|
||||||
|
});
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return statement
|
||||||
|
*/
|
||||||
|
return updatedEntry;
|
||||||
|
};
|
@ -4,7 +4,8 @@
|
|||||||
*/
|
*/
|
||||||
const add = require("./db/add");
|
const add = require("./db/add");
|
||||||
const query = require("./db/query");
|
const query = require("./db/query");
|
||||||
const update = require("./db/update");
|
const update = require("./db/updateDb");
|
||||||
|
const deleteDb = require("./db/deleteDb");
|
||||||
|
|
||||||
////////////////////////////////////////
|
////////////////////////////////////////
|
||||||
////////////////////////////////////////
|
////////////////////////////////////////
|
||||||
@ -17,7 +18,7 @@ const update = require("./db/update");
|
|||||||
const db = {
|
const db = {
|
||||||
add: add,
|
add: add,
|
||||||
update: update,
|
update: update,
|
||||||
delete: update,
|
delete: deleteDb,
|
||||||
query: query,
|
query: query,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "datasquirel",
|
"name": "datasquirel",
|
||||||
"version": "1.1.63",
|
"version": "1.1.64",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
Reference in New Issue
Block a user