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 e8a4534 commit b75932cCopy full SHA for b75932c
database/migrations/rinvex/laravel-subscriptions/2022_10_15_183646_create_plans_table.php
@@ -19,7 +19,7 @@ public function up(): void
19
$table->increments('id');
20
$table->string('slug');
21
$table->json('name');
22
- $table->string('type')->default(\App\Enums\PlanType::DEVELOPER);
+ $table->string('type')->default(\App\Enums\PlanType::DEVELOPER->value);
23
$table->json('description')->nullable();
24
$table->boolean('is_active')->default(true);
25
$table->decimal('price')->default('0.00');
0 commit comments