-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplicator.json
More file actions
48 lines (48 loc) · 1.46 KB
/
replicator.json
File metadata and controls
48 lines (48 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"subjects" : [
{
"subjectroot" : "frt.freight.init",
"columns": [
{
"name" : "freight_key",
"type": "char(38)",
"null": false
},
{
"name" : "ref_address",
"type": "nvarchar(200)"
},
{
"name" : "ref_amount",
"type": "decimal(18,3)"
}
],
"datakeys": [
"freight_key"
]
},
{
"subjectroot" : "frt.freightitem.init",
"columns": [
{
"name" : "freightitem_key",
"type": "char(38)",
"null": true
},
{
"name" : "freight_key",
"type": "char(38)",
"null": true
},
{
"name" : "line_num",
"type": "varchar(12)",
"null": true
}
],
"datakeys": [
"freightitem_key"
]
}
]
}