@wmfs/tymly-pg-plugin
Version:
Replace Tymly's out-the-box memory storage with PostgreSQL
38 lines • 852 B
JSON
{
"Comment": "Synchronizes animal_with_age to animal_with_year.",
"version": "1.0",
"StartAt": "SynchronizingTable",
"instigators": [
"user"
],
"States": {
"SynchronizingTable": {
"Type": "Task",
"InputPath": "$.outputDir",
"Resource": "module:synchronizingTable",
"ResourceConfig": {
"transformerFunctionName": "tymlyTest_animalConverter",
"source": {
"tableName": "tymly_test.animal_with_age",
"hashSumColumnName": "hash_sum"
},
"target": {
"tableName": "tymly_test.animal_with_year",
"hashSumColumnName": "origin_hash_sum"
},
"join": {
"animal": "animal"
}
},
"End": true
}
},
"restrictions": [
{
"roleId": "$everyone",
"allows": [
"*"
]
}
]
}