1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
Contributor:
actAs: { Timestampable ~ }
columns:
name: type: string(255)
firstname: type: string(255)
company: type: string(255)
job: type: string(255)
email: type: string(255)
lang_id: type: integer(1)
customer_id: type: integer(7)
socialrelation:
type: enum
length: 30
values: ['Hierarchie', 'Pair', 'Collaborateur', 'Exterieur']
commnent: type: string(255)
address1: type: string(255)
address2: type: string(255)
postcode: type: string(255)
city: type: string(100)
country: type: string(100)
Invitation:
actAs: { Timestampable ~ }
columns:
token: type: string(255)
recall_date: timestamp
contributor_id: type: integer(7)
Lang:
columns:
name: type: string(50)
iso_code: type: string(5)
Evaluation:
actAs: { Timestampable: ~ }
columns:
contributor_id: type: integer(7)
expires_at: timestamp
customer_id: type: integer(7)
lang_id: type: integer(1)
invitation_id: type: integer(74)
comment: type: string(255)
Topic:
columns:
name: type: string(100)
lang_id: type: integer(1)
Score:
columns:
value: type: integer(1)
topic_id: type: integer(1)
evaluation_id: type: integer(7)
comment: type: string(255) |
Partager