1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

making sure relationships for autocolumns are created when uploading a CSV

This commit is contained in:
Martin McKeaveney 2021-08-24 20:04:28 +01:00
parent 6e03449906
commit 700caa7e34

View file

@ -1,4 +1,5 @@
const CouchDB = require("../../../db")
const linkRows = require("../../../db/linkedRows")
const csvParser = require("../../../utilities/csvParser")
const {
getRowParams,
@ -74,6 +75,15 @@ exports.handleDataImport = async (appId, user, table, dataImport) => {
const processed = inputProcessing(user, table, row)
table = processed.table
row = processed.row
// make sure link rows are up to date
row = await linkRows.updateLinks({
appId,
eventType: linkRows.EventType.ROW_SAVE,
row,
tableId: row.tableId,
table,
})
for (let [fieldName, schema] of Object.entries(table.schema)) {
// check whether the options need to be updated for inclusion as part of the data import
if (