From d6c49a5cf0c1f520efb406075f5566a8f521646f Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Sun, 30 Aug 2020 23:27:06 +0100 Subject: [PATCH] Add missing migration --- ...2020_08_30_152900_create_options_table.php | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 database/migrations/2020_08_30_152900_create_options_table.php 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'); + } +}