Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.44 KB | None | 0 0
  1. sfGuardForgotPassword:
  2.   options:
  3.     symfony:
  4.       form:  false
  5.       filter: false
  6.   actAs: [Timestampable]
  7.   columns:
  8.     user_id:
  9.       type: integer
  10.       notnull: true
  11.     unique_key: string(255)
  12.     expires_at:
  13.       type: timestamp
  14.       notnull: true
  15.   relations:
  16.     User:
  17.       class: sfGuardUser
  18.       local: user_id
  19.       type: one
  20.       foreignType: one
  21.       foreignAlias: ForgotPassword
  22.       onDelete: CASCADE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement