increments('id'); $table->text('name')->nullable(); $table->text('category')->nullable(); $table->string('description', 2555)->nullable(); $table->text('image')->nullable(); $table->integer('order')->nullable(); $table->string('slug', 2555)->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'); } }