Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_05_31_102512_create_sd_change_status_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_change_status', function (Blueprint $table) {
15
+        Schema::create('sd_change_status', 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.
app/Itil/database/migrations/2016_05_31_102657_create_sd_changes_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_changes', function (Blueprint $table) {
15
+        Schema::create('sd_changes', 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.
app/Itil/database/migrations/2016_05_29_131105_create_sd_cab_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_cab', function (Blueprint $table) {
15
+        Schema::create('sd_cab', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('head')->unsigned()->nullable();
Please login to merge, or discard this patch.
Itil/database/migrations/2016_05_30_095158_create_sd_impact_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_impact_types', function (Blueprint $table) {
15
+        Schema::create('sd_impact_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_31_100518_create_sd_release_status_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_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();
Please login to merge, or discard this patch.
database/migrations/2016_07_12_120647_create_table_sd_ticket_relation.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_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');
Please login to merge, or discard this patch.
app/Itil/database/migrations/2016_07_09_073642_create_sd_general_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_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');
Please login to merge, or discard this patch.
database/migrations/2016_05_31_102537_create_sd_change_priority_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_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();
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.