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
|
# Table membre
membre:
actAs:
Timestampable:
inheritance:
extends: sfGuardUserProfile
type: column_aggregation
keyField: type
keyValue: 1
columns:
username:
type: string(255)
notnull: true
unique: true
password:
type: string(255)
notnull: true
last_name:
type: string(255)
notnull: true
first_name:
type: string(255)
notnull: true
pays:
type: string(255)
notnull: true
email_address:
type: string(255)
notnull: true
photo:
type: string(255)
notnull: false
description:
type: clob
signature:
type: clob
is_activated:
type: boolean
default: true
is_banned:
type: boolean
default: false |
Partager