Guest User

Untitled

a guest
Jun 23rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. Usuario:
  2. tableName: USUARIO
  3. columns:
  4. usuario:
  5. notnull: true
  6. type: string(15)
  7. primary: true
  8. adm:
  9. type: string(1)
  10. fixed: true
  11. master:
  12. type: string(1)
  13. fixed: true
  14. dscr_usuario: string(50)
  15. senha: string(15)
  16. CLIENTE: integer(2)
  17. created_at: timestamp(7)
  18. relations:
  19. ClienteObj:
  20. local: CLIENTE
  21. foreign: CLIENTE
  22. type: one
  23. Cliente:
  24. tableName: CLIENTE
  25. columns:
  26. cliente:
  27. notnull: true
  28. type: integer(4)
  29. primary: true
  30. nome: string(50)
  31. endereco: string(50)
  32. bairro: string(50)
  33. cgc: string(15)
  34. ddd: string(5)
  35. telefone: string(20)
  36. fax: string(20)
  37. cep: string(8)
  38. observacao: string(100)
  39. cod_municipio: integer(5)
  40. relations:
  41. Usuario:
  42. local: CLIENTE
  43. foreign: CLIENTE
  44. type: one
Add Comment
Please, Sign In to add comment