Passed
Push — master ( 70d075...35e9ea )
by Ferry
08:21 queued 12s
created
src/database/migrations/2016_09_16_045425_add_label_setting.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('cms_settings', function (Blueprint $table) {
15
+        Schema::table('cms_settings', function(Blueprint $table) {
16 16
             //
17 17
             $table->string('label')->nullable();
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('cms_settings', function (Blueprint $table) {
28
+        Schema::table('cms_settings', function(Blueprint $table) {
29 29
             //
30 30
             $table->dropColumn('label');
31 31
         });
Please login to merge, or discard this patch.
src/database/migrations/2016_08_17_225409_add_status_cms_users.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('cms_users', function (Blueprint $table) {
15
+        Schema::table('cms_users', function(Blueprint $table) {
16 16
             //
17 17
             $table->string('status', 50)->nullable();
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('cms_users', function (Blueprint $table) {
28
+        Schema::table('cms_users', function(Blueprint $table) {
29 29
             //
30 30
             $table->dropColumn('status');
31 31
         });
Please login to merge, or discard this patch.
src/database/migrations/2016_11_14_141657_create_cms_menus.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('cms_menus', function (Blueprint $table) {
15
+        Schema::create('cms_menus', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name')->nullable();
18 18
             $table->string('type')->default('url');
Please login to merge, or discard this patch.
src/database/migrations/2016_08_07_152320_add_table_cms_settings.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('cms_settings', function (Blueprint $table) {
15
+        Schema::create('cms_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('name')->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_08_07_152014_add_table_cms_privileges.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('cms_privileges', function (Blueprint $table) {
15
+        Schema::create('cms_privileges', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('name')->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_10_01_141934_add_responses_apicustom.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('cms_apicustom', function (Blueprint $table) {
15
+        Schema::table('cms_apicustom', function(Blueprint $table) {
16 16
             //
17 17
             $table->longText('responses')->nullable();
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('cms_apicustom', function (Blueprint $table) {
28
+        Schema::table('cms_apicustom', function(Blueprint $table) {
29 29
             //
30 30
             $table->dropColumn('responses');
31 31
         });
Please login to merge, or discard this patch.
src/database/migrations/2016_08_07_152421_add_table_cms_users.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('cms_users', function (Blueprint $table) {
15
+        Schema::create('cms_users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('name')->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_08_07_151210_add_table_cms_logs.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('cms_logs', function (Blueprint $table) {
15
+        Schema::create('cms_logs', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('ipaddress', 50)->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_09_16_035347_add_group_setting.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('cms_settings', function (Blueprint $table) {
15
+        Schema::table('cms_settings', function(Blueprint $table) {
16 16
             //
17 17
             $table->string('group_setting')->nullable();
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('cms_settings', function (Blueprint $table) {
28
+        Schema::table('cms_settings', function(Blueprint $table) {
29 29
             //
30 30
             $table->dropColumn('group_setting');
31 31
         });
Please login to merge, or discard this patch.