如何在 Yii2 上分区 table?
How to partition table on Yii2?
一个名为table的demo,现在需要像demo1,demo2,demo3,....,demo10一样进行分区
那么如何在 Yii2 上对 table 进行分区?
我可能知道应该在模型中添加一个方法 getTableName。
更改相关模型
table名称函数returntable名称
class YouModel extends \yii\db\ActiveRecord
{
public static function tableName()
{
return 'yourTableName' . $YourNumber ;
}
......
一个名为table的demo,现在需要像demo1,demo2,demo3,....,demo10一样进行分区
那么如何在 Yii2 上对 table 进行分区?
我可能知道应该在模型中添加一个方法 getTableName。
更改相关模型
table名称函数returntable名称
class YouModel extends \yii\db\ActiveRecord
{
public static function tableName()
{
return 'yourTableName' . $YourNumber ;
}
......