increments('id'); $table->timestamps(); $table->softDeletes(); $table->string('name'); $table->string('affiliate_key')->unique(); $table->text('payment_title'); $table->text('payment_subtitle'); }); Schema::create('licenses', function ($table) { $table->increments('id'); $table->timestamps(); $table->softDeletes(); $table->unsignedInteger('affiliate_id'); $table->string('first_name'); $table->string('last_name'); $table->string('email'); $table->string('license_key')->unique(); $table->boolean('is_claimed'); $table->string('transaction_reference'); $table->foreign('affiliate_id')->references('id')->on('affiliates'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('licenses'); Schema::dropIfExists('affiliates'); } }