How to change enum type column in laravel migration?

前端 未结 7 2132
挽巷
挽巷 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 05:08

    Use the DB::statement method:

    DB::statement("ALTER TABLE packages MODIFY COLUMN weight_unit ENUM('Grams', 'Kgs', 'Pounds')");
    

提交回复
热议问题