@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('projects', function (Blueprint $table) { |
|
16 | + Schema::create('projects', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('slug')->unique(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('videos', function (Blueprint $table) { |
|
16 | + Schema::create('videos', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('name')->nullable(); |
19 | 19 | $table->string('thumbnail')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('clients', function (Blueprint $table) { |
|
16 | + Schema::create('clients', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('image'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('pages', function (Blueprint $table) { |
|
16 | + Schema::create('pages', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('slug')->unique(); |
19 | 19 | $table->string('code')->unique(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('images', function (Blueprint $table) { |
|
16 | + Schema::create('images', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->foreignId('gallery_id')->nullable()->constrained()->cascadeOnDelete(); |
19 | 19 | $table->string('image')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('galleries', function (Blueprint $table) { |
|
16 | + Schema::create('galleries', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('code')->unique(); |
19 | 19 | $table->string('name'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('facilities', function (Blueprint $table) { |
|
16 | + Schema::create('facilities', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('code')->unique(); |
19 | 19 | $table->string('name'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('services', function (Blueprint $table) { |
|
16 | + Schema::create('services', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('code')->unique(); |
19 | 19 | $table->string('name'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('counters', function (Blueprint $table) { |
|
16 | + Schema::create('counters', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->bigInteger('value'); |