addConnection([ 'driver' => 'sqlite', 'database' => __DIR__ . '/database.sqlite', ]); $capsule->setAsGlobal(); if (!Capsule::schema()->hasTable('product')) { Capsule::schema()->create('product', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->string('skuID'); $table->integer('availableQuantity'); $table->integer('stock'); $table->json('categories'); $table->string('image'); $table->string('subTitle'); $table->string('variantCode'); $table->string('modelCode'); $table->string('url'); $table->timestamps(); }); } if (!Capsule::schema()->hasTable('price')) { Capsule::schema()->create('price', function (Blueprint $table) { $table->increments('id'); $table->foreignId('product_id'); $table->float('price'); $table->float('productStandardPrice'); $table->float('lowestProductPrice30Days'); $table->timestamps(); }); }