increments('id'); $table->string('videos', 255)->nullable(); $table->string('text', 255)->nullable(); $table->string('Radio', 255)->nullable(); $table->string('drop_down', 255)->nullable(); $table->string('image', 255)->nullable(); $table->string('check', 255)->nullable(); $table->integer('switch')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('video_uploadings'); } }