Skip to content

Commit

Permalink
Fix URI_LEN defintion
Browse files Browse the repository at this point in the history
256 was a typo, 255 is the max len for a varchar in mysql
Thanks again to Brandon Lee @palmtown
Related to #1462

(cherry picked from commit 2f5e5ff)
  • Loading branch information
bogdan-iancu committed Sep 17, 2018
1 parent 06b5d40 commit 47bbc9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/schema/entities.xml
@@ -1,7 +1,7 @@
<!ENTITY user_len "64">
<!ENTITY domain_len "64">
<!ENTITY realm_len "64">
<!ENTITY uri_len "256">
<!ENTITY uri_len "255">
<!ENTITY id_len "64">
<!ENTITY table_id_len "10">
<!ENTITY hf_len "255">
Expand Down

0 comments on commit 47bbc9e

Please sign in to comment.