Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_07_05_113126_create_sd_add_template_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 //        ]);
40 40
     }
41 41
     
42
-    public function message(){
42
+    public function message() {
43 43
         $message = '<p>Hi&nbsp;{!!$name!!},</p>
44 44
                         <p>We need you opinion for an action.</p>
45 45
                         <p>Please give your vote and valuable suggestions,</p>
Please login to merge, or discard this patch.
database/migrations/2016_07_09_123113_create_sd_problem_change_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2016_05_30_095117_create_sd_asset_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_asset_types', function (Blueprint $table) {
15
+        Schema::create('sd_asset_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('parent_id')->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_05_30_084708_create_sd_attachment_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function up()
14 14
     {
15 15
         
16
-        Schema::create('sd_attachment_types', function (Blueprint $table) {
16
+        Schema::create('sd_attachment_types', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_07_01_115934_create_sd_asset_type_form_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_asset_type_form', function (Blueprint $table) {
15
+        Schema::create('sd_asset_type_form', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('asset_type_id')->unsigned()->nullable();
18 18
             $table->integer('form_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_05_31_100704_create_sd_releases_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_releases', function (Blueprint $table) {
15
+        Schema::create('sd_releases', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('description');
18 18
             $table->string('subject');
Please login to merge, or discard this patch.
migrations/2016_07_14_043706_create_sd_product_vendor_relation_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_product_vendor_relation', function (Blueprint $table) {
15
+        Schema::create('sd_product_vendor_relation', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('product_id')->nullable();
18 18
             $table->integer('vendor_id')->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_05_31_100449_create_sd_release_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_release_types', function (Blueprint $table) {
15
+        Schema::create('sd_release_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_05_30_095506_create_sd_assets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_assets', function (Blueprint $table) {
15
+        Schema::create('sd_assets', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('external_id')->unique();
Please login to merge, or discard this patch.