在最新的2.0.7的migrate中,怎样为一个字段添加备注? [ 2.0 版本 ]
之前的版本实现:
'phone' => Schema::TYPE_INTEGER . '(11) NOT NULL COMMENT "备注"'
2.0.7
'phone' =>$this->integer([11])->notNull()->?
最佳答案
-
看了下源码,最终会调用:yii\db\QueryBuilder的createTable方法
public function createTable($table, $columns, $options = null) { $cols = []; foreach ($columns as $name => $type) { if (is_string($name)) { $cols[] = "\t" . $this->db->quoteColumnName($name) . ' ' . $this->getColumnType($type); } else { $cols[] = "\t" . $type; } } $sql = "CREATE TABLE " . $this->db->quoteTableName($table) . " (\n" . implode(",\n", $cols) . "\n)"; return $options === null ? $sql : $sql . ' ' . $options; }
他举了个例子:
$sql = $queryBuilder->createTable('user', [ 'id' => 'pk', 'name' => 'string', 'age' => 'integer', ]);
也就是数组中的key会作为字段,value作为类型,然后得看这个方法getColumnType
public function getColumnType($type) { if ($type instanceof ColumnSchemaBuilder) { $type = $type->__toString(); } if (isset($this->typeMap[$type])) { return $this->typeMap[$type]; } elseif (preg_match('/^(\w+)\((.+?)\)(.*)$/', $type, $matches)) { if (isset($this->typeMap[$matches[1]])) { return preg_replace('/\(.+\)/', '(' . $matches[2] . ')', $this->typeMap[$matches[1]]) . $matches[3]; } } elseif (preg_match('/^(\w+)\s+/', $type, $matches)) { if (isset($this->typeMap[$matches[1]])) { return preg_replace('/^\w+/', $this->typeMap[$matches[1]], $type); } } return $type; }
他首先判断传过来的类型是不是ColumnSchemaBuilder这个对象,如果不是,做一些正则判断,最终返回一个字符串,那反正最终就是构成一个合法的字段声明, 比如:
`phone` int(11) NULL DEFAULT NULL COMMENT '备注' ,
那你可以试试,在构建的时候,直接这样做:
'phone' => 'int(11) NULL DEFAULT NULL COMMENT "备注"'
这样应该也是可行的。具体需要你去试试。
共 1 条回复xutongle 觉得很赞
其他 4 个回答
-
crazydouble 回答于 2016-04-21 16:54 举报
不错,'username' => $this->string(32)->notNull()->unique()." COMMENT '管理员账号'",
这样果然实现了 坐等2.0.8共 2 条回复crazydouble 回复于 2019-01-24 20:40 回复@hankhu 'phone_number' => $this->string(11)->notNull()->unique()->comment('手机号') 现在可以这样了已经
杨淇 觉得很赞
杨淇 西南
注册时间:2015-09-25
最后登录:2022-04-12
在线时长:51小时48分
最后登录:2022-04-12
在线时长:51小时48分
- 粉丝12
- 金钱5620
- 威望10
- 积分6230