increments('id'); $table->integer('subject_id')->nullable(); $table->string('title', 255)->nullable(); $table->text('details')->nullable(); $table->text('description')->nullable(); $table->text('images')->nullable(); $table->time('duration')->nullable(); $table->integer('lectures')->nullable(); $table->string('slug', 255)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('courses'); } }