@@ -14,7 +14,7 @@ discard block |
||
| 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->text('html')->nullable(); |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $table->creation(); |
| 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(); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $table->foreign('contacttype')->references('id')->on('ContactType'); |
| 40 | 40 | }); |
| 41 | 41 | |
| 42 | - Schema::create('Contact_Entity', function (Blueprint $table) { |
|
| 42 | + Schema::create('Contact_Entity', function(Blueprint $table) { |
|
| 43 | 43 | $table->increments('id'); |
| 44 | 44 | $table->integer('contact')->unsigned(); |
| 45 | 45 | $table->morphs("entity"); |