gpt4 book ai didi

php - 在 Laravel 中使用迁移重命名表

转载 作者:可可西里 更新时间:2023-11-01 00:12:26 24 4
gpt4 key购买 nike

我正在运行迁移以重命名表,但出现奇怪的错误。

public function up()
{
Schema::rename($accounts, $feeds);
}

public function down()
{
Schema::rename($feeds, $accounts);
}

错误:

undefined variable :accounts

表肯定存在。知道可能是什么问题吗?

最佳答案

你应该使用字符串而不是变量:

public function up()
{
Schema::rename('accounts', 'feeds');
}

public function down()
{
Schema::rename('feeds', 'accounts');
}

关于php - 在 Laravel 中使用迁移重命名表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48671435/

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