diff --git a/packages/Webkul/Product/src/Database/Migrations/2019_05_23_113407_add_remaining_column_in_product_flat_table.php b/packages/Webkul/Product/src/Database/Migrations/2019_05_23_113407_add_remaining_column_in_product_flat_table.php index e474a2e65..1e5417442 100644 --- a/packages/Webkul/Product/src/Database/Migrations/2019_05_23_113407_add_remaining_column_in_product_flat_table.php +++ b/packages/Webkul/Product/src/Database/Migrations/2019_05_23_113407_add_remaining_column_in_product_flat_table.php @@ -14,25 +14,25 @@ class AddRemainingColumnInProductFlatTable extends Migration public function up() { Schema::table('product_flat', function (Blueprint $table) { - if (! Schema::hasColumn('short_description')) + if (! Schema::hasColumn('short_description')) { $table->text('short_description')->nullable(); } - if (! Schema::hasColumn('meta_title')) + if (! Schema::hasColumn('meta_title')) { $table->text('meta_title')->nullable(); } - if (! Schema::hasColumn('meta_keywords')) + if (! Schema::hasColumn('meta_keywords')) { $table->text('meta_keywords')->nullable(); } - if (! Schema::hasColumn('meta_description')) + if (! Schema::hasColumn('meta_description')) { $table->text('meta_description')->nullable(); } - if (! Schema::hasColumn('width')) + if (! Schema::hasColumn('width')) { $table->decimal('width', 12, 4)->nullable(); } - if (! Schema::hasColumn('height')) + if (! Schema::hasColumn('height')) { $table->decimal('height', 12, 4)->nullable(); } - if (! Schema::hasColumn('depth')) + if (! Schema::hasColumn('depth')) { $table->decimal('depth', 12, 4)->nullable(); } }); diff --git a/packages/Webkul/User/src/Http/Controllers/SessionController.php b/packages/Webkul/User/src/Http/Controllers/SessionController.php index f5125e86c..e9a5e13d5 100755 --- a/packages/Webkul/User/src/Http/Controllers/SessionController.php +++ b/packages/Webkul/User/src/Http/Controllers/SessionController.php @@ -5,6 +5,7 @@ namespace Webkul\User\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Http\Response; use Auth; +use File; /** * Admin user session controller @@ -42,6 +43,10 @@ class SessionController extends Controller */ public function create() { + if (File::exists(public_path('installer'))) { + File::deleteDirectory(public_path('installer')); + } + if (auth()->guard('admin')->check()) { return redirect()->route('admin.dashboard.index'); } else { diff --git a/public/index.php b/public/index.php index ea2ec077f..128cf2cf5 100755 --- a/public/index.php +++ b/public/index.php @@ -1,8 +1,17 @@