We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f64758 commit 07f692cCopy full SHA for 07f692c
1 file changed
database/migrations/2025_05_14_013051_create_licenses_table.php
@@ -0,0 +1,35 @@
1
+<?php
2
+
3
+use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6
7
+return new class extends Migration
8
+{
9
+ /**
10
+ * Run the migrations.
11
+ */
12
+ public function up(): void
13
+ {
14
+ Schema::create('licenses', function (Blueprint $table) {
15
+ $table->id();
16
+ $table->foreignId('user_id');
17
+ $table->foreignId('subscription_item_id')->nullable();
18
+ $table->string('policy_name');
19
+ $table->string('key');
20
+ $table->timestamp('expires_at')->nullable();
21
+ $table->timestamps();
22
23
+ $table->index('user_id');
24
+ $table->index('subscription_item_id');
25
+ });
26
+ }
27
28
29
+ * Reverse the migrations.
30
31
+ public function down(): void
32
33
+ Schema::dropIfExists('licenses');
34
35
+};
0 commit comments