Skip to content

Commit

Permalink
fix: enlarge column adsPrjDeplDetails (#5644)
Browse files Browse the repository at this point in the history
* fix: enlarge max size of adsPrjDeplDetails column #5635

* docs: fix header level

* fix: use TEXT datatype for adsPrjDeplDetails #5635

Signed-off-by: Mustafa Baser <mbaser@mail.com>
  • Loading branch information
jgomer2001 authored and devrimyatar committed Dec 30, 2023
1 parent 57cd5fd commit bd8411f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/admin/developer/agama/faq.md
Expand Up @@ -130,7 +130,7 @@ Call java.lang.String#join "" strings

See the examples in the Looping section of the [language reference](../../../agama/language-reference.md#looping).

## How to know the number of iterations carried out by a loop once it has finished?
### How to know the number of iterations carried out by a loop once it has finished?

You can assign this value to a variable at the top of your loop declaration. See the examples in the Looping section of the [language reference](../../../agama/language-reference.md#looping).

Expand Down
9 changes: 3 additions & 6 deletions jans-linux-setup/jans_setup/static/rdbm/sql_data_types.json
Expand Up @@ -902,16 +902,13 @@
},
"adsPrjDeplDetails": {
"mysql": {
"size": 2048,
"type": "VARCHAR"
"type": "TEXT"
},
"pgsql": {
"size": 2048,
"type": "VARCHAR"
"type": "TEXT"
},
"spanner": {
"size": 2048,
"type": "STRING"
"type": "STRING(MAX)"
}
}
}

0 comments on commit bd8411f

Please sign in to comment.