id(); $table->morphs('billable'); $table->string('paddle_id')->unique(); $table->string('name'); $table->string('email'); $table->timestamp('trial_ends_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };