Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
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.
database/migrations/test/2016_08_08_095744_create_social_media_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('social_media', function (Blueprint $table) {
15
+        Schema::create('social_media', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('provider');
18 18
             $table->string('key');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_banlist_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('banlist', function (Blueprint $table) {
15
+        Schema::create('banlist', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->boolean('ban_status');
18 18
             $table->string('email_address');
Please login to merge, or discard this patch.
database/migrations/2016_03_31_061740_create_user_notification_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('user_notification', function (Blueprint $table) {
15
+        Schema::create('user_notification', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('notification_id');
18 18
             $table->integer('user_id');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_ticket_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('ticket_status', function (Blueprint $table) {
15
+        Schema::create('ticket_status', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('state');
Please login to merge, or discard this patch.
database/migrations/2016_05_19_055008_create_workflow_close_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('workflow_close', function (Blueprint $table) {
15
+        Schema::create('workflow_close', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('days');
18 18
             $table->integer('condition');
Please login to merge, or discard this patch.