Guest User

Untitled

a guest
Jan 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. Jeu:
  2. actAs:
  3. DmSortable:
  4. Timestampable:
  5. columns:
  6. nom: { type: string(200), notnull: true }
  7. date_debut: { type: timestamp, notnull: true }
  8. date_fin: { type: timestamp, notnull: true }
  9. image: { type: string(200), notnull: false }
  10. banniere: { type: string(200), notnull: false }
  11. url: { type: varchar(255), notnull: false }
  12. descriptif: { type: clob, extra: ckeditor }
  13. visuel: { type: string(200), notnull: false }
  14. grand_slide: { type: string(200), notnull: false }
  15. small_slide: { type: string(200), notnull: false }
  16. slider: { type: boolean, notnull: true, default: false }
  17. categorie: { type: integer }
  18. style: { type: integer, notnull: true }
  19. actif: { type: boolean, notnull: true, default: false }
  20. couleur_fond: { type: string(10) }
  21. couleur_texte: { type: string(10) }
  22. reglement: { type: clob, extra: ckeditor }
  23. lot1: { type: string(200), notnull: false }
  24. lot2: { type: string(200), notnull: false }
  25. lot3: { type: string(200), notnull: false }
  26. phrase_dotation: { type: string(255), notnull: true }
  27. relations:
  28. StyleJeu: { local: style, foreign: id, foreignAlias: Jeus }
  29. CatJeu: { local: categorie, foreign: id, foreignAlias: Jeus }
Add Comment
Please, Sign In to add comment