Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_02_16_140450_create_date_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_format', function (Blueprint $table) {
15
+        Schema::create('date_format', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('format');
18 18
         });
Please login to merge, or discard this patch.
migrations/2016_02_16_140454_add_foreign_keys_to_canned_response_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('canned_response', function (Blueprint $table) {
15
+        Schema::table('canned_response', function(Blueprint $table) {
16 16
             $table->foreign('user_id', 'canned_response_ibfk_1')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('NO ACTION');
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('canned_response', function (Blueprint $table) {
27
+        Schema::table('canned_response', function(Blueprint $table) {
28 28
             $table->dropForeign('canned_response_ibfk_1');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
migrations/test1/2016_08_12_104410_create_user_additional_infos_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_additional_infos', function (Blueprint $table) {
15
+        Schema::create('user_additional_infos', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('owner');
18 18
             $table->string('service');
Please login to merge, or discard this patch.
migrations/test1/test1/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
         }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function down()
44 44
     {
45
-        Schema::table('ticket_source', function (Blueprint $table) {
45
+        Schema::table('ticket_source', function(Blueprint $table) {
46 46
             //
47 47
         });
48 48
     }
Please login to merge, or discard this patch.
database/migrations/test1/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
         }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function down()
44 44
     {
45
-        Schema::table('ticket_source', function (Blueprint $table) {
45
+        Schema::table('ticket_source', function(Blueprint $table) {
46 46
             //
47 47
         });
48 48
     }
Please login to merge, or discard this patch.
database/migrations/2016_07_02_051247_create_jobs_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('jobs', function (Blueprint $table) {
15
+        Schema::create('jobs', function(Blueprint $table) {
16 16
             $table->bigIncrements('id');
17 17
             $table->string('queue');
18 18
             $table->longText('payload');
Please login to merge, or discard this patch.
database/migrations/2016_06_02_072210_create_common_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('common_settings', function (Blueprint $table) {
15
+        Schema::create('common_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('option_name');
18 18
             $table->string('option_value');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_emails_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('emails', function (Blueprint $table) {
15
+        Schema::create('emails', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('email_address');
18 18
             $table->string('email_name');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_ticket_form_data_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_form_data', function (Blueprint $table) {
15
+        Schema::create('ticket_form_data', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('ticket_id')->unsigned()->nullable()->index('ticket_id');
18 18
             $table->text('title', 65535);
Please login to merge, or discard this patch.