前提・実現したいこと
マイグレーションをしたい
発生している問題・エラーメッセージ
php artisan migrate:freshを実行したところ、以下のエラーが発生しました。
しかし、確認しても見つからなかったので、エラーが発生しているファイルを消して、createしたファイルを修正して再度マイグレーションを実行したのですが、削除したファイルの1コ後のファイルで、全く同じエラーが発生してしまいました。
Doctrine\DBAL\Exception\SyntaxErrorException An exception occurred while executing a query: SQLSTATE[HY000]: General error: 1 near "(": syntax error at vendor/doctrine/dbal/src/Driver/API/SQLite/ExceptionConverter.php:71 67▕ return new NonUniqueFieldNameException($exception, $query); 68▕ } 69▕ 70▕ if (strpos($exception->getMessage(), 'syntax error') !== false) { ➜ 71▕ return new SyntaxErrorException($exception, $query); 72▕ } 73▕ 74▕ if (strpos($exception->getMessage(), 'attempt to write a readonly database') !== false) { 75▕ return new ReadOnlyException($exception, $query); +21 vendor frames 22 database/migrations/2021_07_12_100400_change_quest_items_table_column_item_id.php:18 Illuminate\Support\Facades\Facade::__callStatic("table") +25 vendor frames 48 artisan:37 Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))```
該当のソースコード
エラー文が指しているファイル
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class ChangeQuestItemsTableColumnItemId extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('quest_items', function (Blueprint $table) { $table->renameColumn('item_id','possession_item_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('quest_items', function (Blueprint $table) { $table->renameColumn('possession_item_id','item_id'); }); } }
エラーが発生したファイルの1個前のファイル
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateQuestItemsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('quest_items', function (Blueprint $table) { $table->id(); $table->biginteger('quest_id'); $table->biginteger('item_id'); $table->integer('possession_number'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('quest_items'); } }
試したこと
エラーファイルの18行目を指していたので確認しましたが、以上はありませんでした。
補足情報(FW/ツールのバージョンなど)
Laravel:8.4 データベース:MySQL
あなたの回答
tips
プレビュー