2007-09-13 23:06:04 +04:00
|
|
|
---
|
2007-11-15 08:16:31 +03:00
|
|
|
User:
|
|
|
|
actAs: [Timestampable]
|
|
|
|
columns:
|
|
|
|
id:
|
|
|
|
type: integer(4)
|
2007-10-03 20:38:20 +04:00
|
|
|
primary: true
|
2007-09-21 06:48:13 +04:00
|
|
|
autoincrement: true
|
2007-11-15 08:16:31 +03:00
|
|
|
username:
|
|
|
|
type: string(255)
|
|
|
|
password:
|
|
|
|
type: string(255)
|
|
|
|
Profile:
|
|
|
|
actAs: [Timestampable]
|
|
|
|
columns:
|
|
|
|
id:
|
|
|
|
type: integer(4)
|
2007-09-21 06:48:13 +04:00
|
|
|
primary: true
|
|
|
|
autoincrement: true
|
2007-11-15 08:16:31 +03:00
|
|
|
user_id:
|
|
|
|
type: integer(4)
|
|
|
|
contact_id:
|
|
|
|
type: integer(4)
|
|
|
|
first_name:
|
|
|
|
type: string(255)
|
|
|
|
last_name:
|
|
|
|
type: string(255)
|
|
|
|
relations:
|
|
|
|
User:
|
|
|
|
foreignType: one
|
|
|
|
Contact:
|
|
|
|
foreignType: one
|
|
|
|
Contact:
|
|
|
|
actAs: [Timestampable]
|
|
|
|
columns:
|
|
|
|
id:
|
|
|
|
type: integer(4)
|
|
|
|
primary: true
|
|
|
|
autoincrement: true
|
|
|
|
name:
|
|
|
|
type: string(255)
|
|
|
|
Phonenumber:
|
|
|
|
actAs: [Timestampable]
|
|
|
|
columns:
|
|
|
|
id:
|
|
|
|
type: integer(4)
|
|
|
|
primary: true
|
|
|
|
autoincrement: true
|
|
|
|
contact_id:
|
|
|
|
type: integer(4)
|
|
|
|
phone_number:
|
|
|
|
type: integer(4)
|
|
|
|
relations:
|
|
|
|
Contact:
|
|
|
|
foreignAlias: Phonenumbers
|