increments('id'); $table->string('course_name', 255)->nullable(); $table->string('slug', 255)->nullable(); $table->text('image')->nullable(); $table->longText('description')->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->integer('user_id')->nullable(); $table->text('user_type')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('courses'); } }