Я пытаюсь перенести свои недавно созданные миграции.Проблема в том, что пакет миграций, ожидающих миграции, находится в том порядке, в котором я создал миграцию с использованием
php artisan make:migration
. Таким образом, моя миграция product_list
пытается установить внешний ключ для таблицы, котораяон еще не мигрировал.
$table->foreign('product_category')->references('id')->on('product_categories');
$table->foreign('product_type')->references('id')->on('product_types')->onDelete('cascade');
Когда я запускаю php artisan migrate
, я получаю следующие ошибки:
C:\xampp\htdocs\iezonsolutions>php artisan migrate
Migrating: 2019_01_15_001617_product_list
Illuminate\Database\QueryException : SQLSTATE[HY000]: General error: 1005 Can't create table `iezonsolutions`.`#sql-1844_16e` (errno: 150 "Foreign key constraint is incorrectly formed") (SQL: alter table `product_list` add constraint `product_list_product_category_foreign` foreign key (`product_category`) references `product_categories` (`id`))
at C:\xampp\htdocs\iezonsolutions\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: 1005 Can't create table `iezonsolutions`.`#sql-1844_16e` (errno: 150 "Foreign key constraint is incorrectly formed")")
C:\xampp\htdocs\iezonsolutions\vendor\laravel\framework\src\Illuminate\Database\Connection.php:458
2 PDOStatement::execute()
C:\xampp\htdocs\iezonsolutions\vendor\laravel\framework\src\Illuminate\Database\Connection.php:458
Please use the argument -v to see more details.
Возможно ли перенести мои таблицы product_category
и product_types
раньшемой product_list
стол?Тогда я смогу установить внешние ключи без ошибок.
Мой статус миграции выглядит следующим образом:
+------+------------------------------------------------+-------+
| Ran? | Migration | Batch |
+------+------------------------------------------------+-------+
| Yes | 2014_10_12_000000_create_users_table | 1 |
| Yes | 2014_10_12_100000_create_password_resets_table | 1 |
| Yes | 2019_01_14_203800_server_mode | 2 |
| No | 2019_01_15_001617_product_list | |
| No | 2019_01_15_002318_product_types | |
| No | 2019_01_15_002336_product_categories | |
| No | 2019_01_15_002357_product_skus | |
+------+------------------------------------------------+-------+
Я хочу, чтобы он переносился в порядке
| No | 2019_01_15_002336_product_categories | |
| No | 2019_01_15_002318_product_types | |
| No | 2019_01_15_001617_product_list | |
| No | 2019_01_15_002357_product_skus | |
+------+------------------------------------------------+-------+