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