Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_02_16_140450_create_date_time_format_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('date_time_format', function (Blueprint $table) {
15
+        Schema::create('date_time_format', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('format');
18 18
         });
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_settings_ticket_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('settings_ticket', function (Blueprint $table) {
15
+        Schema::create('settings_ticket', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('num_format');
18 18
             $table->string('num_sequence');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_ticket_collaborator_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('ticket_collaborator', function (Blueprint $table) {
15
+        Schema::create('ticket_collaborator', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->boolean('isactive');
18 18
             $table->integer('ticket_id')->unsigned()->nullable()->index('ticket_id');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_settings_system_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('settings_system', function (Blueprint $table) {
15
+        Schema::create('settings_system', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->boolean('status');
18 18
             $table->string('url');
Please login to merge, or discard this patch.
database/migrations/test/2016_07_26_090201_create_faveo_queues_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('faveo_queues', function (Blueprint $table) {
15
+        Schema::create('faveo_queues', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('service_id');
18 18
             $table->string('key');
Please login to merge, or discard this patch.
database/migrations/test/2016_07_29_113012_create_conditions_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('conditions', function (Blueprint $table) {
15
+        Schema::create('conditions', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('job');
18 18
             $table->string('value');
Please login to merge, or discard this patch.
database/migrations/test/2016_07_26_094753_create_mail_services_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
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('mail_services', function (Blueprint $table) {
16
+        Schema::create('mail_services', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->string('short_name');
Please login to merge, or discard this patch.
database/migrations/test/2016_07_26_084458_create_faveo_mails_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('faveo_mails', function (Blueprint $table) {
15
+        Schema::create('faveo_mails', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('email_id');
18 18
             $table->string('drive');
Please login to merge, or discard this patch.
database/migrations/test/2016_07_26_095020_create_queue_services_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
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('queue_services', function (Blueprint $table) {
16
+        Schema::create('queue_services', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->string('short_name');
Please login to merge, or discard this patch.