engine = 'InnoDB'; $table->increments('id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->softDeletes(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('database_tester_users'); } }