diff --git a/sandbox/models/Contact.class.php b/sandbox/models/Contact.class.php new file mode 100644 index 000000000..b646b7f21 --- /dev/null +++ b/sandbox/models/Contact.class.php @@ -0,0 +1,19 @@ +setTableName('contact'); + $this->hasColumn('name', 'string', 255); + } + + public function setUp() + { + $this->hasMany('User', array('local' => 'id', + 'foreign' => 'contact_id')); + } + +} \ No newline at end of file diff --git a/sandbox/models/generated/BaseUser.class.php b/sandbox/models/generated/BaseUser.class.php new file mode 100644 index 000000000..eba00611d --- /dev/null +++ b/sandbox/models/generated/BaseUser.class.php @@ -0,0 +1,22 @@ +setTableName('user'); + $this->hasColumn('username', 'string', 255); + $this->hasColumn('contact_id', 'integer', null); + } + + public function setUp() + { + $this->hasOne('Contact', array('local' => 'contact_id', + 'foreign' => 'id')); + } + +} \ No newline at end of file diff --git a/sandbox/sandbox.db b/sandbox/sandbox.db new file mode 100755 index 000000000..5f4bd6848 Binary files /dev/null and b/sandbox/sandbox.db differ diff --git a/sandbox/schema/contact.yml b/sandbox/schema/contact.yml new file mode 100644 index 000000000..d1fa3ab41 --- /dev/null +++ b/sandbox/schema/contact.yml @@ -0,0 +1,6 @@ +--- +Contact: + columns: + name: + type: string + length: 255 \ No newline at end of file diff --git a/sandbox/schema/user.yml b/sandbox/schema/user.yml new file mode 100644 index 000000000..10cfa2b67 --- /dev/null +++ b/sandbox/schema/user.yml @@ -0,0 +1,13 @@ +--- +User: + columns: + username: + type: string + length: 255 + contact_id: + type: integer + size: 11 + relations: + Contact: + local: contact_id + foreign: id \ No newline at end of file