Difference between #35 and #37 of
A Multi-Tenant Strategy using Yii and MySQL

Changes

Title unchanged

A Multi-Tenant Strategy using Yii and MySQL

Category unchanged

How-tos

Yii version unchanged

Tags unchanged

saas, multi-tenant

Content changed

[...]
public function afterSave() // required - database views don't expose this to the schema Yii can access
{
if ($this->getIsNewRecord()) {
$this->id = Yii::app()->db->getLastInsertID();
 // I understand this works because MySQL handles it by each individual net connection so there should be no multiuser contention or race conditions
}
return parent::afterSave();
[...]
{
if ($this->getIsNewRecord()) {
$this->id = Yii::app()->db->getLastInsertID();
 // I understand this works because MySQL handles it by each individual net connection so there should be no multiuser contention or race conditions
}
return parent::afterSave();
}
}
```
[...]
7 0
23 followers
Viewed: 48 176 times
Version: 1.1
Category: How-tos
Written by: JFReyes
Last updated by: CeBe
Created on: Dec 28, 2013
Last updated: 10 years ago
Update Article

Revisions

View all history