gpt4 book ai didi

laravel - 如何使用 Laravel Schema Builder 在表格上设置注释

转载 作者:行者123 更新时间:2023-12-03 20:16:26 25 4
gpt4 key购买 nike

如何使用 Laravel Schema Builder 对表设置注释?

列集:

public function up()
{
Schema::create('vendors', function (Blueprint $table)
{
$table->comment('not working - error'); // not working - error
$table->increments('id');
$table->string('vendor', 255)->comment('Some comment.');
$table->timestamps();
});
}

但是为了 table ?

最佳答案

好吧,我没有给你一个很好的答案,但至少它有效。

这里是:

public function up()
{
$tableName = 'vendors';

Schema::create($tableName, function (Blueprint $table)
{
$table->increments('id');
$table->string('vendor', 255)->comment('Some comment.');
$table->timestamps();
});

DB::statement("ALTER TABLE `$tableName` comment 'My comment'");
}

只需在创建表后添加一条 DB 语句。

关于laravel - 如何使用 Laravel Schema Builder 在表格上设置注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34271843/

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