Docker内でLaravelアプリの開発の続きをしようとして、テーブル作成とseederを流し込むためにMySQLコンテナへ
php artisan migrateしたら下記のようなエラーが出てしまいました。
昨日まで普通にDB操作ができていたのでおかしいなと思い調べましたが何が原因か対処法も見つからずでこちらへ質問させていただきました。
usersテーブルのマイグレーションファイルはLaravelのデフォルトであるやつで自分は何も書き換えてはいません。
MySQLの容量も100%に達してはいないと思われますので困っています。
どうすればマイグレーションの実行ができるか教えていただきたく思います。
php artisan migrate Migrating: 2014_10_12_000000_create_users_table Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 1030 Got error 168 from storage engine (SQL: create table `users` (`id` bigint unsigned not null auto_increment primary key, `name` varchar(255) not null, `email` varchar(255) not null, `email_verified_at` timestamp null, `password` varchar(255) not null, `remember_token` varchar(100) null, `created_at` timestamp null, `updated_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci') at vendor/laravel/framework/src/Illuminate/Database/Connection.php:671 667| // If an exception occurs when attempting to run a query, we'll format the error 668| // message to include the bindings with SQL, which will make this exception a 669| // lot more helpful to the developer instead of just the database's errors. 670| catch (Exception $e) { > 671| throw new QueryException( 672| $query, $this->prepareBindings($bindings), $e 673| ); 674| } 675| +9 vendor frames 10 database/migrations/2014_10_12_000000_create_users_table.php:24 Illuminate\Support\Facades\Facade::__callStatic("create") +22 vendor frames 33 artisan:37 Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/27 12:40