making sure relationships for autocolumns are created when uploading a CSV
This commit is contained in:
parent
ad7383a57b
commit
0a8c6e1ef9
|
@ -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 (
|
||||
|
|
Loading…
Reference in New Issue