id(); $table->string('name'); $table->string('email'); $table->string('product'); $table->string('version'); $table->boolean('is_perpetual'); $table->string('expiration_date')->nullable();; $table->string('signature'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('licenses'); } };