Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_05_28_133934_create_d_product_proc_mode_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_proc_mode', function (Blueprint $table) {
15
+        Schema::create('sd_product_proc_mode', 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.
ServiceDesk/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.
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_06_09_133939_create_sd_asset_relations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
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.
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_30_134953_create_sd_contracts_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_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');
Please login to merge, or discard this patch.
ServiceDesk/database/migrations/2016_07_01_042955_create_sd_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_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();
Please login to merge, or discard this patch.