@liuwanwei
2017-01-19T07:26:48.000000Z
字数 336
阅读 798
yii2
新增 column:
两种方法,但本质是一样的,分别列举:
// 方法 1:直接写 sql
$this->addColumn('appointment', 'clerkId', 'INT NOT NULL DEFAULT \'0\' after state');
// 方法 2:通过构建函数
$type = $this->integer()->notNull()->defaultValue(0)->after('state')->comment('店员添加预约时记录店员 user.id');
$this->addColumn('appointment', 'clerkId', $type);
// 当然后一种方法更好,容易维护