Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCustomers()
 {
     return $this->hasMany(\giiant\sakila\models\Customer::className(), ['store_id' => 'store_id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCustomer()
 {
     return $this->hasOne(\giiant\sakila\models\Customer::className(), ['customer_id' => 'customer_id']);
 }