diff --git a/database/migrations/2020_08_30_152900_create_options_table.php b/database/migrations/2020_08_30_152900_create_options_table.php new file mode 100644 index 0000000..2c0537c --- /dev/null +++ b/database/migrations/2020_08_30_152900_create_options_table.php @@ -0,0 +1,34 @@ +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'); + } +}