mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
- Pay and subscribe from generated Subscription Request
This commit is contained in:
@@ -16,6 +16,7 @@ class CreateSubscriptionRequestsTable extends Migration
|
||||
Schema::create('subscription_requests', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary()->index();
|
||||
$table->uuid('user_id')->index();
|
||||
$table->string('creator');
|
||||
$table->string('requested_plan');
|
||||
$table->enum('status', ['requested', 'payed', 'cancelled'])->default('requested');
|
||||
$table->timestamps();
|
||||
|
||||
Reference in New Issue
Block a user