gpt4 book ai didi

php - Laravel 5.2 migration comment on migration 专栏

转载 作者:行者123 更新时间:2023-12-03 22:58:14 27 4
gpt4 key购买 nike

我正在使用 laravel 5.2 开发一个项目。我有一个问题,我创建了一个迁移文件来更改列的评论。但是根据文档,它说在添加列时使用“列修饰符”。所以我不知道如何更新现有专栏的评论,有人可以帮助我吗?谢谢。

最佳答案

您可以使用 comment() 方法和 change()

Schema::table('users', function(Blueprint $table) {
$table->string('name')->comment('Name of the user')->change();
});

确保它正确迁移

mysql> show full columns from users like 'name';+-------+--------------+--------------------+------+-----+---------+-------+---------------------------------+------------------+| Field | Type         | Collation          | Null | Key | Default | Extra | Privileges                      | Comment          |+-------+--------------+--------------------+------+-----+---------+-------+---------------------------------+------------------+| name  | varchar(255) | utf8mb4_unicode_ci | NO   |     | NULL    |       | select,insert,update,references | Name of the user |+-------+--------------+--------------------+------+-----+---------+-------+---------------------------------+------------------+

关于php - Laravel 5.2 migration comment on migration 专栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44557502/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com