How to change enum type column in laravel migration?

前端 未结 7 2155
挽巷
挽巷 2021-02-05 04:36

I am using Laravel 5.1 and I have a table called packages with this structure:

id              int(11)
weight          decimal(10,2)           
weight_unit     e         


        
7条回答
  •  天涯浪人
    2021-02-05 04:57

    add this before change() call :

    DB::getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string');
    

提交回复
热议问题