Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_02_16_140450_create_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('time_format', function (Blueprint $table) {
15
+        Schema::create('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_company_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_company', function (Blueprint $table) {
15
+        Schema::create('settings_company', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('company_name');
18 18
             $table->string('website');
Please login to merge, or discard this patch.
database/migrations/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/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.
migrations/2016_02_16_140454_add_foreign_keys_to_department_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('department', function (Blueprint $table) {
15
+        Schema::table('department', function(Blueprint $table) {
16 16
             $table->foreign('sla', 'department_ibfk_1')->references('id')->on('sla_plan')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
             $table->foreign('manager', 'department_ibfk_2')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('RESTRICT');
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('department', function (Blueprint $table) {
28
+        Schema::table('department', function(Blueprint $table) {
29 29
             $table->dropForeign('department_ibfk_1');
30 30
             $table->dropForeign('department_ibfk_2');
31 31
         });
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140454_add_foreign_keys_to_teams_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('teams', function (Blueprint $table) {
15
+        Schema::table('teams', function(Blueprint $table) {
16 16
             $table->foreign('team_lead', 'teams_ibfk_1')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
         });
18 18
     }
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function down()
26 26
     {
27
-        Schema::table('teams', function (Blueprint $table) {
27
+        Schema::table('teams', function(Blueprint $table) {
28 28
             $table->dropForeign('teams_ibfk_1');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
database/migrations/2016_05_10_102604_create_bar_notifications_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('bar_notifications', function (Blueprint $table) {
15
+        Schema::create('bar_notifications', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('key');
18 18
             $table->string('value');
Please login to merge, or discard this patch.
2016_02_16_140454_add_foreign_keys_to_team_assign_agent_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('team_assign_agent', function (Blueprint $table) {
15
+        Schema::table('team_assign_agent', function(Blueprint $table) {
16 16
             $table->foreign('team_id', 'team_assign_agent_ibfk_1')->references('id')->on('teams')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
             $table->foreign('agent_id', 'team_assign_agent_ibfk_2')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('RESTRICT');
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('team_assign_agent', function (Blueprint $table) {
28
+        Schema::table('team_assign_agent', function(Blueprint $table) {
29 29
             $table->dropForeign('team_assign_agent_ibfk_1');
30 30
             $table->dropForeign('team_assign_agent_ibfk_2');
31 31
         });
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_groups_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('groups', function (Blueprint $table) {
15
+        Schema::create('groups', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->boolean('group_status');
Please login to merge, or discard this patch.