id(); $table->unsignedInteger('venue_id')->nullable(); $table->string('referee')->nullable(); $table->string('score')->nullable(); $table->string('half_score')->nullable(); $table->dateTime('date')->nullable(); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('matches'); } }