Merge pull request #944 from rahulshukla-webkul/development

Development
This commit is contained in:
Jitendra Singh 2019-05-24 17:18:17 +05:30 committed by GitHub
commit d7c2ef3e6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 17 deletions

View File

@ -14,13 +14,27 @@ class AddRemainingColumnInProductFlatTable extends Migration
public function up() public function up()
{ {
Schema::table('product_flat', function (Blueprint $table) { Schema::table('product_flat', function (Blueprint $table) {
if (! Schema::hasColumn('product_flat', 'short_description')) {
$table->text('short_description')->nullable(); $table->text('short_description')->nullable();
}
if (! Schema::hasColumn('product_flat', 'meta_title')) {
$table->text('meta_title')->nullable(); $table->text('meta_title')->nullable();
}
if (! Schema::hasColumn('product_flat', 'meta_keywords')) {
$table->text('meta_keywords')->nullable(); $table->text('meta_keywords')->nullable();
}
if (! Schema::hasColumn('product_flat', 'meta_description')) {
$table->text('meta_description')->nullable(); $table->text('meta_description')->nullable();
}
if (! Schema::hasColumn('product_flat', 'width')) {
$table->decimal('width', 12, 4)->nullable(); $table->decimal('width', 12, 4)->nullable();
}
if (! Schema::hasColumn('product_flat', 'height')) {
$table->decimal('height', 12, 4)->nullable(); $table->decimal('height', 12, 4)->nullable();
}
if (! Schema::hasColumn('product_flat', 'depth')) {
$table->decimal('depth', 12, 4)->nullable(); $table->decimal('depth', 12, 4)->nullable();
}
}); });
} }
@ -32,13 +46,7 @@ class AddRemainingColumnInProductFlatTable extends Migration
public function down() public function down()
{ {
Schema::table('product_flat', function (Blueprint $table) { Schema::table('product_flat', function (Blueprint $table) {
$table->dropColumn('short_description');
$table->dropColumn('meta_title');
$table->dropColumn('meta_keywords');
$table->dropColumn('meta_description');
$table->dropColumn('width', 12, 4);
$table->dropColumn('height', 12, 4);
$table->dropColumn('depth', 12, 4);
}); });
} }
} }

View File

@ -5,6 +5,7 @@ namespace Webkul\User\Http\Controllers;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Http\Response; use Illuminate\Http\Response;
use Auth; use Auth;
use File;
/** /**
* Admin user session controller * Admin user session controller
@ -42,6 +43,10 @@ class SessionController extends Controller
*/ */
public function create() public function create()
{ {
if (File::exists(public_path('installer'))) {
File::deleteDirectory(public_path('installer'));
}
if (auth()->guard('admin')->check()) { if (auth()->guard('admin')->check()) {
return redirect()->route('admin.dashboard.index'); return redirect()->route('admin.dashboard.index');
} else { } else {

View File

@ -1,8 +1,17 @@
<?php <?php
$install = require __DIR__.'/installer/install.php'; $location = str_replace('\\', '/', getcwd());
$currentLocation = explode("/", $location);
$desiredLocation = implode("/", $currentLocation);
$installFile = $desiredLocation . '/installer' . '/install.php';
if (!is_null($install)) { if (file_exists($installFile)) {
$install = require __DIR__.'/installer/install.php';
} else {
$install = null;
}
if (! is_null($install)) {
header("Location: $install"); header("Location: $install");