I have a table that contains an enum field
CREATE TABLE `user_status` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `values` enum(\'on\', \'off\'),
I say
public function up() { Schema::create('dt_warehouses', function (Blueprint $table) { **$table->enum('isactive', ['Y', 'N'])->default('Y');** $table->timestamps(); }); }