49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
include_once 'vendor/autoload.php';
|
|
|
|
use Illuminate\Database\Capsule\Manager as Capsule;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
echo 'Execute this script in cli only';
|
|
exit;
|
|
}
|
|
touch('database.sqlite');
|
|
$capsule = new Capsule;
|
|
$capsule->addConnection([
|
|
'driver' => 'sqlite',
|
|
'database' => __DIR__ . '/database.sqlite',
|
|
]);
|
|
$capsule->setAsGlobal();
|
|
|
|
if (!Capsule::schema()->hasTable('products')) {
|
|
Capsule::schema()->create('products', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('name');
|
|
$table->integer('skuID')->unique();
|
|
$table->integer('agilityID');
|
|
$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('prices')) {
|
|
Capsule::schema()->create('prices', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->foreignId('product_id');
|
|
$table->float('price');
|
|
$table->float('productStandardPrice');
|
|
$table->float('lowestProductPrice30Days');
|
|
$table->timestamps();
|
|
});
|
|
}
|