engine = 'InnoDB'; $table->increments('id'); $table->string('code')->unique(); $table->string('email'); $table->timestamp('claimed_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('invites'); } }