Guest User

Untitled

a guest
Oct 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. Categoria:
  2. tableName: Categorias
  3. columns:
  4. id:
  5. type: integer(4)
  6. primary: true
  7. notnull: true
  8. autoincrement: true
  9. nombre:
  10. type: string(255)
  11. notnull: true
  12. imagen:
  13. type: string(255)
  14. descripcion:
  15. type: clob(65535)
  16. activo:
  17. type: boolean
  18. default: 1
  19. relations:
  20. Categorias:
  21. class: Categoria
  22. refClass: CategoriasCategoria
  23. local: cat1
  24. foreign: cat2
  25. equal: true
  26. onDelete: cascade
  27. onUpdate: cascade
  28.  
  29. CategoriasCategoria:
  30. tableName: CategoriasCategorias
  31. columns:
  32. cat1:
  33. type: integer(4)
  34. primary: true
  35. notnull: true
  36. cat2:
  37. type: integer(4)
  38. primary: true
  39. notnull: true
  40. indexes:
  41. fk_CategoriasCategorias_Categorias1:
  42. fields: [cat1]
  43. fk_CategoriasCategorias_Categorias2:
  44. fields: [cat2]
Add Comment
Please, Sign In to add comment