| 12345678910111213141516171819202122 |
- {
- "name": "ADMIN_USERS",
- "db_table": "ADMIN_USERS",
- "db_source": "default_db",
- "label": "Użytkownik",
- "list_label": "Użytkownicy",
- "fields": {
- "ID": { "label": "Nr", "type": "int" },
- "ADM_ACCOUNT": { "label": "Login", "type": "string", "restrictions": { "maxLength": 20 } },
- "ADM_NAME": { "label": "Imię i nazwisko", "type": "string", "restrictions": { "maxLength": 255 } }
- },
- "keys": {
- "PRIMARY": {
- "fields": "ID",
- "auto_increment": true
- },
- "uniq_adm_account": {
- "fields": ["ADM_ACCOUNT"],
- "type": "UNIQUE"
- }
- }
- }
|