schema.yml 978 Bytes
Newer Older
Jonathan.Wage's avatar
Jonathan.Wage committed
1
---
2 3 4 5 6
User:
  actAs: [Timestampable]
  columns:
    id:
      type: integer(4)
7
      primary: true
8
      autoincrement: true
9 10 11 12 13 14 15 16 17
    username:
      type: string(255)
    password:
      type: string(255)
Profile:
  actAs: [Timestampable]
  columns:
    id:
      type: integer(4)
18 19
      primary: true
      autoincrement: true
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
    user_id:
      type: integer(4)
    contact_id:
      type: integer(4)
    first_name:
      type: string(255)
    last_name:
      type: string(255)
  relations:
    User: 
      foreignType: one
    Contact:
      foreignType: one
Contact:
  actAs: [Timestampable]
  columns:
    id:
      type: integer(4)
      primary: true
      autoincrement: true
    name:
      type: string(255)
Phonenumber:
  actAs: [Timestampable]
  columns:
    id:
      type: integer(4)
      primary: true
      autoincrement: true
    contact_id:
      type: integer(4)
    phone_number:
      type: integer(4)
  relations:
    Contact:
      foreignAlias: Phonenumbers