Skip to main content

Posts

Showing posts from July, 2021

Base Table Or View Already Exists In Laravel Migration

Check Table Exists Or Not In Laravel Migration Let’s create a users table only if the users table doesn’t exist in the database.   <?php     use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema;     class CreateUsersTable extends Migration {      /**       * Run the migrations.       *       * @return void       */      public function up()      {            /*           * If users table does not exists then create           * Your newly appended changes won't be added if table already exists           */       ...