id(); $table->string('option_name'); $table->string('option_value'); $table->string('friendly_name'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('options'); } }