@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_release_status', function (Blueprint $table) { |
|
15 | + Schema::create('sd_release_status', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->timestamps(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | * @return void |
12 | 12 | */ |
13 | 13 | public function up() { |
14 | - Schema::create('sd_asset_relations', function (Blueprint $table) { |
|
14 | + Schema::create('sd_asset_relations', function(Blueprint $table) { |
|
15 | 15 | $table->increments('id'); |
16 | 16 | $table->string('asset_ids'); |
17 | 17 | $table->string('owner'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_ticket_relation', function (Blueprint $table) { |
|
15 | + Schema::create('sd_ticket_relation', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('ticket_id'); |
18 | 18 | $table->string('owner'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_gerneral', function (Blueprint $table) { |
|
15 | + Schema::create('sd_gerneral', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('owner'); |
18 | 18 | $table->string('key'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_contracts', function (Blueprint $table) { |
|
15 | + Schema::create('sd_contracts', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('description'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_forms', function (Blueprint $table) { |
|
15 | + Schema::create('sd_forms', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('title'); |
18 | 18 | $table->timestamps(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_change_priorities', function (Blueprint $table) { |
|
15 | + Schema::create('sd_change_priorities', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->timestamps(); |
@@ -39,7 +39,7 @@ |
||
39 | 39 | // ]); |
40 | 40 | } |
41 | 41 | |
42 | - public function message(){ |
|
42 | + public function message() { |
|
43 | 43 | $message = '<p>Hi {!!$name!!},</p> |
44 | 44 | <p>We need you opinion for an action.</p> |
45 | 45 | <p>Please give your vote and valuable suggestions,</p> |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_problem_change', function (Blueprint $table) { |
|
15 | + Schema::create('sd_problem_change', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('problem_id')->unsigned()->nullable(); |
18 | 18 | $table->foreign('problem_id')->references('id')->on('sd_problem'); |