From 9fe1c409a5bfd36aadbc65ebef443fb39039566d Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Sun, 3 Dec 2017 09:23:59 +0000 Subject: [PATCH] Added clear cache migration --- .../2017_12_03_091509_Laravel55Upgrade.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2017_12_03_091509_Laravel55Upgrade.php diff --git a/database/migrations/2017_12_03_091509_Laravel55Upgrade.php b/database/migrations/2017_12_03_091509_Laravel55Upgrade.php new file mode 100644 index 00000000..1243d201 --- /dev/null +++ b/database/migrations/2017_12_03_091509_Laravel55Upgrade.php @@ -0,0 +1,29 @@ +call('cache:clear'); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // same thing + $this->up(); + } +}