Skip to content

Commit 05af00e

Browse files
committed
Fixed missing fields.
1 parent ae6d3ae commit 05af00e

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

models/designer/field.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,12 @@ module.exports = {
192192
"maxLength": 30,
193193
"column": "format"
194194
},
195+
{
196+
"id": "labelShort",
197+
"label": "Short label",
198+
"type": "text",
199+
"column": "labelshort"
200+
},
195201
{
196202
"id": "required",
197203
"type": "boolean",

models/designer/object.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ module.exports = {
4343
"inMany": true,
4444
"column": "table"
4545
},
46+
{
47+
"id": "pKey",
48+
"column": "pkey",
49+
"label": "Primary key column",
50+
"type": "text",
51+
},
4652
{
4753
"id": "entity",
4854
"type": "text",
@@ -59,7 +65,7 @@ module.exports = {
5965
"required": true,
6066
"maxLength": 50,
6167
"inMany": true,
62-
"column": "Name"
68+
"column": "name"
6369
},
6470
{
6571
"id": "namePlural",

0 commit comments

Comments
 (0)