id(); $table->integer("owner_id"); $table->string("wish"); $table->integer("claimed_by")->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wishes'); } }