From beed74c0d051abbee50edf0c37868b6c4c16367a Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 14 May 2016 15:04:51 -0700 Subject: [PATCH] Add extra tables for drop --- app/Console/Commands/PaveIt.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/PaveIt.php b/app/Console/Commands/PaveIt.php index ff7a725479..25a9e4d4bc 100644 --- a/app/Console/Commands/PaveIt.php +++ b/app/Console/Commands/PaveIt.php @@ -56,7 +56,9 @@ class PaveIt extends Command \DB::statement('drop table IF EXISTS custom_fieldsets'); \DB::statement('drop table IF EXISTS depreciations'); \DB::statement('drop table IF EXISTS groups'); - //\DB::statement('drop table IF EXISTS history'); + \DB::statement('drop table IF EXISTS history'); + \DB::statement('drop table IF EXISTS components'); + \DB::statement('drop table IF EXISTS components_assets'); \DB::statement('drop table IF EXISTS license_seats'); \DB::statement('drop table IF EXISTS licenses'); \DB::statement('drop table IF EXISTS locations');