From 0ceff4ab5364a698bf565b4fdf9232b480d626ec Mon Sep 17 00:00:00 2001 From: Edmond Teh Date: Thu, 3 Sep 2020 11:34:46 +0800 Subject: [PATCH] add total to invoice_details --- ...09_03_113336_add_total_invoice_details.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2020_09_03_113336_add_total_invoice_details.php diff --git a/database/migrations/2020_09_03_113336_add_total_invoice_details.php b/database/migrations/2020_09_03_113336_add_total_invoice_details.php new file mode 100644 index 00000000..6a929443 --- /dev/null +++ b/database/migrations/2020_09_03_113336_add_total_invoice_details.php @@ -0,0 +1,32 @@ +double('total'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('invoice_details', function (Blueprint $table) { + // + }); + } +}