Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_06_02_094409_create_template_sets_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('template_sets', function (Blueprint $table) {
15
+        Schema::create('template_sets', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('active');
Please login to merge, or discard this patch.
database/migrations/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/2016_02_16_140450_create_kb_settings_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('kb_settings', function (Blueprint $table) {
15
+        Schema::create('kb_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('pagination');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_widgets_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('widgets', function (Blueprint $table) {
15
+        Schema::create('widgets', function(Blueprint $table) {
16 16
             $table->integer('id', true);
17 17
             $table->string('name', 30)->nullable();
18 18
             $table->string('title', 50)->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140454_add_foreign_keys_to_users_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('users', function (Blueprint $table) {
15
+        Schema::table('users', function(Blueprint $table) {
16 16
             $table->foreign('assign_group', 'users_ibfk_1')->references('id')->on('groups')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
             $table->foreign('primary_dpt', 'users_ibfk_2')->references('id')->on('department')->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('users', function (Blueprint $table) {
28
+        Schema::table('users', function(Blueprint $table) {
29 29
             $table->dropForeign('users_ibfk_1');
30 30
             $table->dropForeign('users_ibfk_2');
31 31
         });
Please login to merge, or discard this patch.
database/migrations/2016_06_02_074913_create_login_attempts_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('login_attempts', function (Blueprint $table) {
15
+        Schema::create('login_attempts', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('User');
18 18
             $table->string('IP');
Please login to merge, or discard this patch.
migrations/2016_02_16_140454_add_foreign_keys_to_ticket_form_data_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('ticket_form_data', function (Blueprint $table) {
15
+        Schema::table('ticket_form_data', function(Blueprint $table) {
16 16
             $table->foreign('ticket_id', 'ticket_form_data_ibfk_1')->references('id')->on('tickets')->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('ticket_form_data', function (Blueprint $table) {
27
+        Schema::table('ticket_form_data', function(Blueprint $table) {
28 28
             $table->dropForeign('ticket_form_data_ibfk_1');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_team_assign_agent_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('team_assign_agent', function (Blueprint $table) {
15
+        Schema::create('team_assign_agent', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('team_id')->unsigned()->nullable()->index('team_id');
18 18
             $table->integer('agent_id')->unsigned()->nullable()->index('agent_id');
Please login to merge, or discard this patch.
database/migrations/2016_08_16_104539_alter_ticket_source_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     public function up()
14 14
     {
15 15
         if (!Schema::hasColumn('ticket_source', 'css_class')) {
16
-            Schema::table('ticket_source', function (Blueprint $table) {
16
+            Schema::table('ticket_source', function(Blueprint $table) {
17 17
                 $table->string('css_class');
18 18
             });
19 19
         }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function down()
46 46
     {
47
-        Schema::table('ticket_source', function (Blueprint $table) {
47
+        Schema::table('ticket_source', function(Blueprint $table) {
48 48
             //
49 49
         });
50 50
     }
Please login to merge, or discard this patch.