options: collate: utf8_czech_ci charset: utf8 sfGuardGroup: actAs: [Timestampable] columns: name: type: string(255) unique: true description: string(1000) relations: Users: class: sfGuardUser refClass: sfGuardUserGroup local: group_id foreign: user_id foreignAlias: Groups Permissions: class: sfGuardPermission local: group_id foreign: permission_id refClass: sfGuardGroupPermission foreignAlias: Groups sfGuardPermission: actAs: [Timestampable] columns: name: type: string(255) unique: true description: string(1000) sfGuardGroupPermission: options: symfony: form: false filter: false actAs: [Timestampable] columns: group_id: type: integer primary: true permission_id: type: integer primary: true relations: Group: class: sfGuardGroup local: group_id onDelete: CASCADE Permission: class: sfGuardPermission local: permission_id onDelete: CASCADE sfGuardUser: actAs: [Timestampable] columns: first_name: string(255) last_name: string(255) email_address: type: string(255) notnull: true unique: true tel: type: string(255) notnull: false username: type: string(128) notnull: true unique: true algorithm: type: string(128) default: sha1 notnull: true salt: string(128) password: string(128) is_active: type: boolean default: 1 is_super_admin: type: boolean default: false last_login: type: timestamp indexes: is_active_idx: fields: [is_active] relations: Groups: class: sfGuardGroup local: user_id foreign: group_id refClass: sfGuardUserGroup foreignAlias: Users Permissions: class: sfGuardPermission local: user_id foreign: permission_id refClass: sfGuardUserPermission foreignAlias: Users sfGuardUserPermission: options: symfony: form: false filter: false actAs: [Timestampable] columns: user_id: type: integer primary: true permission_id: type: integer primary: true relations: User: class: sfGuardUser local: user_id onDelete: CASCADE Permission: class: sfGuardPermission local: permission_id onDelete: CASCADE sfGuardUserGroup: options: symfony: form: false filter: false actAs: [Timestampable] columns: user_id: type: integer primary: true group_id: type: integer primary: true relations: User: class: sfGuardUser local: user_id onDelete: CASCADE Group: class: sfGuardGroup local: group_id onDelete: CASCADE sfGuardRememberKey: options: symfony: form: false filter: false actAs: [Timestampable] columns: user_id: integer remember_key: string(32) ip_address: string(50) relations: User: class: sfGuardUser local: user_id foreignAlias: RememberKeys foreignType: one onDelete: CASCADE sfGuardForgotPassword: options: symfony: form: false filter: false actAs: [Timestampable] columns: user_id: type: integer notnull: true unique_key: string(255) expires_at: type: timestamp notnull: true relations: User: class: sfGuardUser local: user_id type: one foreignType: one foreignAlias: ForgotPassword onDelete: CASCADE