Completed
Push — master ( 81bc36...e196e6 )
by Joao
02:28
created
src/Migrations/2016_01_15_000200_create_customfields_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
 
17
-        Schema::create('CustomField', function (Blueprint $table) {
17
+        Schema::create('CustomField', function(Blueprint $table) {
18 18
             $table->increments('id');
19 19
             $table->string('title', 25);
20 20
             $table->string('friendly_name', 150);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             $table->tinyinteger('visibility');
24 24
         });
25 25
 
26
-        Schema::create('CustomValue', function (Blueprint $table) {
26
+        Schema::create('CustomValue', function(Blueprint $table) {
27 27
             $table->increments('id');
28 28
             $table->integer('customfield')->unsigned();
29 29
             $table->string('entity', 100);
Please login to merge, or discard this patch.