File tree Expand file tree Collapse file tree 2 files changed +101
-0
lines changed Expand file tree Collapse file tree 2 files changed +101
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ *
3+ * {
4+ * "add": {
5+ * "entity": [<names of new property>],
6+ * "container": [<names of new property>],
7+ * "model": [<names of new property>],
8+ * "view": [<names of new property>],
9+ * "field": {
10+ * "<type>": [<names of new property>]
11+ * }
12+ * },
13+ * "delete": {
14+ * "entity": [<names of new property>],
15+ * "container": [<names of new property>],
16+ * "model": [<names of new property>],
17+ * "view": [<names of new property>],
18+ * "field": {
19+ * "<type>": [<names of new property>]
20+ * }
21+ * },
22+ * "modify": {
23+ * "entity": [
24+ * {
25+ * "from": { <properties that identify record> },
26+ * "to": { <properties that need to be changed> }
27+ * }
28+ * ],
29+ * "container": [],
30+ * "model": [],
31+ * "view": [],
32+ * "field": []
33+ * },
34+ * }
35+ */
36+ {
37+ "modify" : {
38+ "field" : [
39+ {
40+ "from" : {
41+ "type" : " binary" ,
42+ "mode" : " varbinary" ,
43+ "hasMaxLength" : true
44+ },
45+ "to" : {
46+ "length" : 1024000
47+ }
48+ }
49+ ]
50+ }
51+ }
Original file line number Diff line number Diff line change 1+ /**
2+ *
3+ * {
4+ * "add": {
5+ * "entity": [<names of new property>],
6+ * "container": [<names of new property>],
7+ * "model": [<names of new property>],
8+ * "view": [<names of new property>],
9+ * "field": {
10+ * "<type>": [<names of new property>]
11+ * }
12+ * },
13+ * "delete": {
14+ * "entity": [<names of new property>],
15+ * "container": [<names of new property>],
16+ * "model": [<names of new property>],
17+ * "view": [<names of new property>],
18+ * "field": {
19+ * "<type>": [<names of new property>]
20+ * }
21+ * },
22+ * "modify": {
23+ * "entity": [
24+ * {
25+ * "from": { <properties that identify record> },
26+ * "to": { <properties that need to be changed> }
27+ * }
28+ * ],
29+ * "container": [],
30+ * "model": [],
31+ * "view": [],
32+ * "field": []
33+ * },
34+ * }
35+ */
36+ {
37+ "modify" : {
38+ "field" : [
39+ {
40+ "from" : {
41+ "type" : " varbyte" ,
42+ "length" : 1024000
43+ },
44+ "to" : {
45+ "hasMaxLength" : true
46+ }
47+ }
48+ ]
49+ }
50+ }
You can’t perform that action at this time.
0 commit comments