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 45 46 47
|
MyProfile:
inheritance:
type: column_aggregation
extends: sfGuardUserProfile
columns:
birthday:
type: date
notnull: true
address:
type: varchar(150)
notnull: true
zipcode:
type: varchar(150)
notnull: true
city:
type: string(150)
notnull: true
address:
type: varchar(150)
notnull: true
phone:
type: integer(10)
notnull: true
country_id:
type: integer
notnull: true
gender_id:
type: integer
notnull: true
relations:
country:
foreignAlias: sfGuardUserProfile
gender:
foreignAlias: sfGuardUserProfile
country:
columns:
name:
type: string(50)
notnull: true
gender:
columns:
name:
type: string(50)
notnull: true |
Partager