default_db-local_email.json 749 B

12345678910111213141516171819202122
  1. {
  2. "name": "local_email",
  3. "label": "Lokalny adres email",
  4. "list_label": "Lokalne adresy email",
  5. "fields": {
  6. "ID": {"label": "Nr", "type": "int" },
  7. "EMAIL": { "label": "Login", "type": "string", "restrictions": { "maxLength": 20 } },
  8. "ID_USER": { "label": "Nr użytkownika", "type": "int", "nullable": true },
  9. "ID_GROUP": { "label": "Nr grupy", "type": "int", "nullable": true },
  10. "REMOTE_TYPE": { "label": "Przypisane do", "type": "enumeration", "restrictions": { "enumeration": ["ADMIN_USERS", "CRM_LISTA_ZASOBOW"] } }
  11. },
  12. "keys": {
  13. "PRIMARY": {
  14. "fields": "ID",
  15. "auto_increment": true
  16. },
  17. "uniq_remote": {
  18. "fields": ["REMOTE_TYPE", "ID_USER", "ID_USER"],
  19. "type": "UNIQUE"
  20. }
  21. }
  22. }