Skip to content

Commit

Permalink
HCK-7984: Automatically mark PK as Not Null (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightlngale authored Sep 19, 2024
1 parent d752e9f commit 4aeea32
Showing 1 changed file with 132 additions and 6 deletions.
138 changes: 132 additions & 6 deletions properties_pane/field_level/fieldLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,28 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Not null",
"propertyKeyword": "required",
"propertyType": "checkbox"
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"key": "primaryKey",
"value": true
},
"disabled": true,
"defaultValue": true
},
{
"propertyName": "Not null",
"propertyKeyword": "required",
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"type": "not",
"values": {
"key": "primaryKey",
"value": true
}
},
"defaultValue": false
},
{
"propertyName": "Unique",
Expand Down Expand Up @@ -802,7 +823,28 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Not null",
"propertyKeyword": "required",
"propertyType": "checkbox"
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"key": "primaryKey",
"value": true
},
"disabled": true,
"defaultValue": true
},
{
"propertyName": "Not null",
"propertyKeyword": "required",
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"type": "not",
"values": {
"key": "primaryKey",
"value": true
}
},
"defaultValue": false
},
{
"propertyName": "Unique",
Expand Down Expand Up @@ -1135,7 +1177,28 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Not null",
"propertyKeyword": "required",
"propertyType": "checkbox"
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"key": "primaryKey",
"value": true
},
"disabled": true,
"defaultValue": true
},
{
"propertyName": "Not null",
"propertyKeyword": "required",
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"type": "not",
"values": {
"key": "primaryKey",
"value": true
}
},
"defaultValue": false
},
{
"propertyName": "Unique",
Expand Down Expand Up @@ -1487,7 +1550,28 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Not null",
"propertyKeyword": "required",
"propertyType": "checkbox"
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"key": "primaryKey",
"value": true
},
"disabled": true,
"defaultValue": true
},
{
"propertyName": "Not null",
"propertyKeyword": "required",
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"type": "not",
"values": {
"key": "primaryKey",
"value": true
}
},
"defaultValue": false
},
{
"propertyName": "Unique",
Expand Down Expand Up @@ -1835,7 +1919,28 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Not null",
"propertyKeyword": "required",
"propertyType": "checkbox"
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"key": "primaryKey",
"value": true
},
"disabled": true,
"defaultValue": true
},
{
"propertyName": "Not null",
"propertyKeyword": "required",
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"type": "not",
"values": {
"key": "primaryKey",
"value": true
}
},
"defaultValue": false
},
{
"propertyName": "Unique",
Expand Down Expand Up @@ -2237,7 +2342,28 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Not null",
"propertyKeyword": "required",
"propertyType": "checkbox"
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"key": "primaryKey",
"value": true
},
"disabled": true,
"defaultValue": true
},
{
"propertyName": "Not null",
"propertyKeyword": "required",
"enableForReference": true,
"propertyType": "checkbox",
"dependency": {
"type": "not",
"values": {
"key": "primaryKey",
"value": true
}
},
"defaultValue": false
},
{
"propertyName": "Unique",
Expand Down

0 comments on commit 4aeea32

Please sign in to comment.