-
Notifications
You must be signed in to change notification settings - Fork 1
Table Name Validation
Andrey edited this page Mar 26, 2022
·
5 revisions
The table name can have 3-63 symbols
Allowed symbos are:
- latin letter lowercase ['a'..'z'];
- digits ['0'..'9']
- dash symbol ['-']
Additional restrictions:
- table name can not have two and more dash '-' symbol
- * Not Allowed Example: 'my--table-name';- table name can be started from digit symbol or dash symbol only
- * Not Allowed Example: '-my-table-name';- table name can be ended with digit symbol or dash symbol only
- * Not Allowed Example: 'my-table-name-';