マイグレーションファイルに変更を加え、
php artisan migrateを実行しましたが、エラーが出ていて困っています。
posts,categories,commentsのマイグレーションファイルとモデルファイルを作成しました。
ターミナルにて実行
vagrant@homestead:~/code$ php artisan make:model Posts -m Model created successfully. Created Migration: 2018_07_01_085052_create_posts_table vagrant@homestead:~/code$ php artisan make:model Categories -m Model created successfully. Created Migration: 2018_07_01_085130_create_categories_table vagrant@homestead:~/code$ php artisan make:model Comments -m Model created successfully. Created Migration: 2018_07_01_085150_create_comments_table vagrant@homestead:~/code/database$ cd migrations/ vagrant@homestead:~/code/database/migrations$ ls 2014_10_12_000000_create_users_table.php 2014_10_12_100000_create_password_resets_table.php 2018_07_01_085052_create_posts_table.php 2018_07_01_085130_create_categories_table.php 2018_07_01_085150_create_comments_table.php vagrant@homestead:~/code$ php artisan migrate Illuminate\Database\QueryException : SQLSTATE[HY000]: General error: 1813 Tablespace '`homestead`.`categories`' exists. (SQL: create table `categories` (`id` int unsigned not null auto_increment primary key, `name` varchar(255) not null, `created_at` timestamp null, `updated_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci') at /home/vagrant/code/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664 660| // If an exception occurs when attempting to run a query, we'll format the error 661| // message to include the bindings with SQL, which will make this exception a 662| // lot more helpful to the developer instead of just the database's errors. 663| catch (Exception $e) { > 664| throw new QueryException( 665| $query, $this->prepareBindings($bindings), $e 666| ); 667| } 668| Exception trace: 1 PDOException::("SQLSTATE[HY000]: General error: 1813 Tablespace '`homestead`.`categories`' exists.") /home/vagrant/code/vendor/laravel/framework/src/Illuminate/Database/Connection.php:458 2 PDOStatement::execute() /home/vagrant/code/vendor/laravel/framework/src/Illuminate/Database/Connection.php:458 Please use the argument -v to see more details.
categoriesについてエラーが出ているように思えます。
categoriesのマイグレーションファイルの変更はこのようになっています。
2018_07_01_085130_create_categories_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateCategoriesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('categories', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('categories'); } }
どのような原因が考えられるでしょうか。教えてください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。