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();
    }
}
```[...]