Completed
Push — master ( 28b1a6...80a5d3 )
by Joao
02:18
created
src/Migrations/2016_01_14_235800_create_contacts_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('ContactType', function (Blueprint $table) {
17
+        Schema::create('ContactType', function(Blueprint $table) {
18 18
             $table->increments('id');
19 19
             $table->string('name', 100);
20 20
             $table->string('icon', 50)->nullable();
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             $table->softDeletes();
26 26
         });
27 27
 
28
-        Schema::create('Contact', function (Blueprint $table) {
28
+        Schema::create('Contact', function(Blueprint $table) {
29 29
             $table->increments('id');
30 30
             $table->string('contact_reference', 50);
31 31
             $table->integer('contacttype')->unsigned();
Please login to merge, or discard this patch.