Guest User

Untitled

a guest
May 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # config/doctrine/schema.yml
  2. Prospect:
  3. actAs: { Timestampable: ~ }
  4. columns:
  5. Nom: { type: string(255), notnull: true }
  6. Contact: { type: string(255) }
  7. Fonction: { type: string(255) }
  8. Adresse: { type: string(255) }
  9. Telephone: { type: string(255) }
  10. Email: { type: string(255) }
  11. Site_web: { type: string(255) }
  12.  
  13. Appel:
  14. actAs: { Timestampable: ~ }
  15. columns:
  16. Prospect_id: { type: integer, notnull: true }
  17. Prospecteur: { type: string(255) }
  18. Date_recontact: { type: date }
  19. Commentaire: { type: string(4000) }
  20. A_rappeller: { type: boolean }
  21. relations:
  22. Prospect: { local: Prospect_id, foreign: id, foreignAlias: Appels, type: one, foreignType: many }
Add Comment
Please, Sign In to add comment