Answers for "laravel migration add options to enum column"

PHP
1

Laravel Migration - Update Enum Options

DB::statement("ALTER TABLE users CHANGE COLUMN permissions permissions ENUM('admin', 'user', 'candidate') NOT NULL DEFAULT 'user'");
Posted by: Guest on April-28-2021

Code answers related to "laravel migration add options to enum column"

Browse Popular Code Answers by Language