1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
User:
actAs: { Timestampable: ~ }
columns:
area_id: {type: integer,notnull : true}
name: { type: string(255),notnull: true}
nickName: { type: string(255),notnull: true}
gentle: { type: boolean(2),notnull: true}
avatar: { type: string(255)}
bornDate : {type: string(255)}
email: { type: string(255), notnull: true }
jobName: {type: string(255), notnull: true,unique: true}
studyLevel: {type: string(255),notnull: true}
area: {type : string(255),notnull: true}
is_active: { type: boolean, notnull: true }
password: {type: string(255),notnull: true}
relations:
Area : { onDelete: CASCADE, local: area_id , foreign: id , foreignAlias: Users }
Area:
columns:
cityName : {type : string(255) |
Partager