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() + { + + } +}