increments('id'); $table->string('name', 255)->nullable(); $table->string('slug', 255)->nullable(); $table->text('description')->nullable(); $table->string('zoom_room_id', 255)->nullable(); $table->string('zoom_room_password', 255)->nullable(); $table->string('youtube_id', 255)->nullable(); $table->dateTime('date_start')->nullable(); $table->dateTime('date_end')->nullable(); $table->integer('difficulty_id')->nullable(); $table->integer('category_id')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('schedulers'); } }