使用 php artisan migrate 时,迁移时更改表名,使用 tinker 保存对象时出错
Posted
技术标签:
【中文标题】使用 php artisan migrate 时,迁移时更改表名,使用 tinker 保存对象时出错【英文标题】:when using php artisan migrate, change table name in migration, error occur when using tinker to save object 【发布时间】:2020-09-30 23:24:25 【问题描述】:这是我的迁移,我正在使用 mysql,当我运行迁移时,它成功了,我查看了我的 mysql DB,表的名称是我想要的“receivedDocument”。
class CreateReceivedDocumentsTable extends Migration
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('received_documents', function (Blueprint $table)
$table->id();
$table->dateTime('receivedDate')->nullable();
$table->string('subjectDescription')->nullable();
$table->string('fromEntity')->nullable();
$table->string('documentNumber')->nullable();
$table->integer('documentTypeId')->nullable();
$table->dateTime('documentDate')->nullable();
$table->integer('responseTypeId')->nullable();
$table->text('remarks')->nullable();
$table->timestamps();
);
Schema::rename('received_documents', 'receivedDocument');
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
Schema::rename('receivedDocument', 'received_documents');
Schema::dropIfExists('received_documents');
当我使用 tinker 创建和保存记录时,它失败了。 Tinker 似乎不知道我在迁移中更改了表名。
>>> $rd = new \App\ReceivedDocument();
=> App\ReceivedDocument #3036
>>> $rd->subjectDescription = 'description sample';
=> "description sample"
>>> $rd->documentNumber = '1234/2020';
=> "1234/2020"
>>> $rd->save();
Illuminate/Database/QueryException with message 'SQLSTATE[42S02]: Base table or
view not found: 1146 Table 'dossier.received_documents' doesn't exist (SQL: inse
rt into `received_documents` (`subjectDescription`, `documentNumber`, `updated_a
t`, `created_at`) values (description sample, 1234/2020, 2020-06-11 10:18:00, 20
20-06-11 10:18:00))'
如何告诉 tinker 我在迁移过程中发生了哪些变化?
【问题讨论】:
【参考方案1】:在你的模型中,定义如下表:
protected $table = 'receivedDocument';
【讨论】:
以上是关于使用 php artisan migrate 时,迁移时更改表名,使用 tinker 保存对象时出错的主要内容,如果未能解决你的问题,请参考以下文章
laravel php artisan migrate 错误(超时)
当我在第 51 行运行 php artisan migrate 命令时出错
在 laravel 控制台中执行 php artisan migrate 时出错
php artisan migrate throwing [PDO Exception] 找不到驱动程序 - 使用 Laravel