1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
use Illuminate\Support\Facades\Schema; |
6
|
|
|
use Illuminate\Database\Schema\Blueprint; |
7
|
|
|
use Illuminate\Database\Migrations\Migration; |
8
|
|
|
|
9
|
|
|
class CreateBookableBookingsTable extends Migration |
10
|
|
|
{ |
11
|
|
|
/** |
12
|
|
|
* Run the migrations. |
13
|
|
|
* |
14
|
|
|
* @return void |
15
|
|
|
*/ |
16
|
|
|
public function up(): void |
17
|
|
|
{ |
18
|
|
|
Schema::create(config('rinvex.bookings.tables.bookable_bookings'), function (Blueprint $table) { |
19
|
|
|
// Columns |
20
|
|
|
$table->increments('id'); |
21
|
|
|
$table->morphs('bookable'); |
22
|
|
|
$table->morphs('customer'); |
23
|
|
|
$table->dateTime('starts_at')->nullable(); |
24
|
|
|
$table->dateTime('ends_at')->nullable(); |
25
|
|
|
$table->dateTime('canceled_at')->nullable(); |
26
|
|
|
$table->string('timezone')->nullable(); |
27
|
|
|
$table->decimal('price')->default('0.00'); |
28
|
|
|
$table->integer('quantity')->unsigned(); |
29
|
|
|
$table->decimal('total_paid')->default('0.00'); |
30
|
|
|
$table->string('currency', 3); |
31
|
|
|
$table->{$this->jsonable()}('formula')->nullable(); |
32
|
|
|
$table->schemalessAttributes('options'); |
33
|
|
|
$table->text('notes')->nullable(); |
34
|
|
|
$table->timestamps(); |
35
|
|
|
$table->softDeletes(); |
36
|
|
|
}); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* Reverse the migrations. |
41
|
|
|
* |
42
|
|
|
* @return void |
43
|
|
|
*/ |
44
|
|
|
public function down(): void |
45
|
|
|
{ |
46
|
|
|
Schema::dropIfExists(config('rinvex.bookings.tables.bookable_bookings')); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* Get jsonable column data type. |
51
|
|
|
* |
52
|
|
|
* @return string |
53
|
|
|
*/ |
54
|
|
|
protected function jsonable(): string |
55
|
|
|
{ |
56
|
|
|
$driverName = DB::connection()->getPdo()->getAttribute(PDO::ATTR_DRIVER_NAME); |
57
|
|
|
$dbVersion = DB::connection()->getPdo()->getAttribute(PDO::ATTR_SERVER_VERSION); |
58
|
|
|
$isOldVersion = version_compare($dbVersion, '5.7.8', 'lt'); |
59
|
|
|
|
60
|
|
|
return $driverName === 'mysql' && $isOldVersion ? 'text' : 'json'; |
61
|
|
|
} |
62
|
|
|
} |
63
|
|
|
|