increments('id'); $table->string('name'); $table->year('year')->nullable(); $table->string('isbn')->nullable(); $table->integer('genre_id')->unsigned()->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('books'); } }