Advertisement
Guest User

Untitled

a guest
Oct 1st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.76 KB | None | 0 0
  1. User:
  2.   connection: doctrine
  3.   tableName: user
  4.   columns:
  5.     id:
  6.       type: integer(8)
  7.       fixed: false
  8.       unsigned: false
  9.       primary: true
  10.       autoincrement: true
  11.     username:
  12.       type: string()
  13.       fixed: false
  14.       unsigned: false
  15.       primary: false
  16.       notnull: false
  17.       autoincrement: false
  18.     first_name:
  19.       type: string()
  20.       notnull: false
  21.     last_name:
  22.       type: string()
  23.       notnull: false
  24.     password:
  25.       type: string()
  26.       notnull: true
  27.     email:
  28.       type: string()
  29.       fixed: false
  30.       unsigned: false
  31.       primary: false
  32.       notnull: false
  33.       autoincrement: false
  34.     phone:
  35.       type: string(9)
  36.       fixed: false
  37.       unsigned: false
  38.       primary: false
  39.       notnull: false
  40.       autoincrement: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement