Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_02_16_140450_create_languages_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('languages', function (Blueprint $table) {
15
+        Schema::create('languages', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('locale');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_plugins_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('plugins', function (Blueprint $table) {
15
+        Schema::create('plugins', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('path');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_sla_plan_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('sla_plan', function (Blueprint $table) {
15
+        Schema::create('sla_plan', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('grace_period');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_settings_ratings_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_ratings', function (Blueprint $table) {
15
+        Schema::create('settings_ratings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('rating_name');
18 18
             $table->integer('publish');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_ticket_attachment_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_attachment', function (Blueprint $table) {
15
+        Schema::create('ticket_attachment', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('thread_id')->unsigned()->nullable()->index('thread_id');
Please login to merge, or discard this patch.
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.