yii2的表前缀

来源:互联网 发布:图像优化中自动设定 编辑:程序博客网 时间:2024/06/04 17:46

在comment中

'components' => [    'db' => [        'class' => 'yii\db\Connection',        'dsn' => 'mysql:host=localhost;dbname=yii',        'username' => 'root',        'password' => 'root',        'charset' => 'utf8',        'tablePrefix'=>'yii_' ],model层中 
public static function tableName(){    return '{{%user}}';}


0 0
原创粉丝点击