@@ -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') . '_' . 'clients', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'clients', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | $table->string('slug'); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'careers', function (Blueprint $table) { |
|
| 16 | + Schema::create(config('website.table_prefix', 'website').'_'.'careers', function(Blueprint $table) { |
|
| 17 | 17 | $table->id(); |
| 18 | 18 | $table->string('title'); |
| 19 | 19 | $table->string('slug')->unique(); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'taggables', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'taggables', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->unsignedBigInteger('tag_id'); |
| 17 | 17 | $table->unsignedBigInteger('taggable_id'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'pages', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'pages', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('slug'); |
| 17 | 17 | $table->string('name'); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'messages', function (Blueprint $table) { |
|
| 16 | + Schema::create(config('website.table_prefix', 'website').'_'.'messages', function(Blueprint $table) { |
|
| 17 | 17 | $table->id(); |
| 18 | 18 | $table->string('name'); |
| 19 | 19 | $table->string('email')->nullable(); |
@@ -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); |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | public function up(): void |
| 10 | 10 | { |
| 11 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'media', function (Blueprint $table) { |
|
| 11 | + Schema::create(config('website.table_prefix', 'website').'_'.'media', function(Blueprint $table) { |
|
| 12 | 12 | $table->id(); |
| 13 | 13 | |
| 14 | 14 | $table->morphs('model'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'faqs', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'faqs', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->text('question'); |
| 17 | 17 | $table->longText('answer'); |