Laravel migration table field's type change

后端 未结 7 1482
难免孤独
难免孤独 2020-12-08 12:45

Following is my file 2015_09_14_051851_create_orders_table.php. And I want to change $table->integer(\'category_id\'); as a string with new migratio

7条回答
  •  轮回少年
    2020-12-08 13:42

    all other answers are Correct But Before you run

    php artisan migrate
    

    make sure you run this code first

    composer require doctrine/dbal
    

    to avoid this error

    RuntimeException : Changing columns for table "items" requires Doctrine DBAL; install "doctrine/dbal".

提交回复
热议问题