id(); $table->timestamps(); $table->string("nombre"); $table->boolean("abierto")->default(true); //true indica que se pueden agregar nuevas disponibilidades, false que no. }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('eventos'); } }