@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('payments', function (Blueprint $table) { |
|
14 | + Schema::create('payments', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete(); |
17 | 17 | $table->integer('type')->default(1); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('attributes', function (Blueprint $table) { |
|
14 | + Schema::create('attributes', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('code')->unique(); |
17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('facilities', function (Blueprint $table) { |
|
14 | + Schema::create('facilities', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('slug'); |
17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('testimonials', function (Blueprint $table) { |
|
14 | + Schema::create('testimonials', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('name'); |
17 | 17 | $table->string('email')->nullable(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('packages', function (Blueprint $table) { |
|
14 | + Schema::create('packages', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('slug'); |
17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('products', function (Blueprint $table) { |
|
14 | + Schema::create('products', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('sku')->unique(); |
17 | 17 | $table->string('name')->unique(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('attribute_product', function (Blueprint $table) { |
|
14 | + Schema::create('attribute_product', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->unsignedBigInteger('attribute_id'); |
17 | 17 | $table->unsignedBigInteger('product_id'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('counters', function (Blueprint $table) { |
|
14 | + Schema::create('counters', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('name'); |
17 | 17 | $table->string('icon'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('personal_access_tokens', function (Blueprint $table) { |
|
14 | + Schema::create('personal_access_tokens', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->morphs('tokenable'); |
17 | 17 | $table->string('name'); |