yii表前缀怎么配置

yii表前缀怎么配置,第1张

yii表前缀怎么配置

yii表前缀的配置方法:首先对component中db的配置进行修改;然后在相应的model中修改tablename属性,修改语句如“public function tableName(){return '{{%user}}';}”。

yii2配置表前缀

前缀设置

component中db的配置修改

'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=xxxx',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'tb_',   //加入前缀名称fc_
),

推荐:《yii教程》

然后在相应的model中修改tablename属性如下:

例如model 的 User中

修改为:

public function tableName()
{
return '{{%user}}';
}

以上就是yii表前缀怎么配置的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/700806.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-23
下一篇 2022-04-23

发表评论

登录后才能评论

评论列表(0条)

保存