Passed
Push — master ( f1aad3...85aeb8 )
by Ferry
05:16 queued 02:22
created
database/migrations/2016_08_07_152214_add_table_cms_privileges_roles.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_roles', function (Blueprint $table) {
15
+        Schema::create('cms_privileges_roles', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->boolean('is_visible')->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_08_07_145904_add_table_cms_apicustom.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_apicustom', function (Blueprint $table) {
15
+        Schema::create('cms_apicustom', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('permalink')->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_10_01_141846_add_parameters_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('parameters')->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('parameters');
31 31
         });
Please login to merge, or discard this patch.
src/database/migrations/2016_08_07_154624_add_table_cms_moduls.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_moduls', function (Blueprint $table) {
15
+        Schema::create('cms_moduls', 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_20_125418_add_table_cms_notifications.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_notifications', function (Blueprint $table) {
15
+        Schema::create('cms_notifications', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->integer('id_cms_users')->nullable();
Please login to merge, or discard this patch.
src/database/migrations/2016_09_17_104728_create_nullable_cms_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
             $table->string('permalink')->nullable()->change();
17 17
             $table->string('tabel')->nullable()->change();
18 18
             $table->string('aksi')->nullable()->change();
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function down()
35 35
     {
36
-        Schema::table('cms_settings', function (Blueprint $table) {
36
+        Schema::table('cms_settings', function(Blueprint $table) {
37 37
             //
38 38
         });
39 39
     }
Please login to merge, or discard this patch.
src/database/migrations/2017_06_06_164501_add_deleted_at_cms_moduls.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
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('cms_moduls', function (Blueprint $table) {
16
+        Schema::table('cms_moduls', function(Blueprint $table) {
17 17
             $table->softDeletes();
18 18
         });
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('cms_moduls', function (Blueprint $table) {
28
+        Schema::table('cms_moduls', function(Blueprint $table) {
29 29
             $table->dropSoftDeletes();
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
src/database/migrations/2016_10_01_144826_add_table_apikey.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_apikey', function (Blueprint $table) {
15
+        Schema::create('cms_apikey', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('screetkey')->nullable();
Please login to merge, or discard this patch.
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.