From 4c4d64f30fa6da0dba41c9e7a72967dfbf7a9f16 Mon Sep 17 00:00:00 2001 From: 1day2die Date: Thu, 4 Nov 2021 21:02:40 +0100 Subject: [PATCH] Migration --- .../2021_11_04_195244_tax_in_config.php | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 database/migrations/2021_11_04_195244_tax_in_config.php diff --git a/database/migrations/2021_11_04_195244_tax_in_config.php b/database/migrations/2021_11_04_195244_tax_in_config.php new file mode 100644 index 00000000..1412ca59 --- /dev/null +++ b/database/migrations/2021_11_04_195244_tax_in_config.php @@ -0,0 +1,35 @@ +insert( + array( + 'key' => 'TAX_IN_PERCENT', + 'value' => '0', + 'type' => 'integer', + 'description' => 'This will be added to the Product Price on Checkout', + ) + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + + } +}