@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create(config('website.table_prefix', 'website').'_'.'abouts', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'abouts', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('title'); |
17 | 17 | $table->string('slug'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create(config('website.table_prefix', 'website').'_'.'teams', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'teams', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('name'); |
17 | 17 | $table->string('slug'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create(config('website.table_prefix', 'website').'_'.'tags', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'tags', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('name'); |
17 | 17 | $table->string('slug'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create(config('website.table_prefix', 'website').'_'.'counters', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'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(config('website.table_prefix', 'website').'_'.'downloads', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'downloads', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->string('name'); |
17 | 17 | $table->integer('group')->default(1); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create(config('website.table_prefix', 'website').'_'.'processes', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'processes', 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(config('website.table_prefix', 'website').'_'.'notices', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'notices', 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(config('website.table_prefix', 'website').'_'.'products', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'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(config('website.table_prefix', 'website').'_'.'attribute_product', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'attribute_product', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->unsignedBigInteger('attribute_id'); |
17 | 17 | $table->unsignedBigInteger('product_id'); |