Skip to content

Commit b75932c

Browse files
authored
Issue on rinvex migrations (#114)
1 parent e8a4534 commit b75932c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/rinvex/laravel-subscriptions/2022_10_15_183646_create_plans_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function up(): void
1919
$table->increments('id');
2020
$table->string('slug');
2121
$table->json('name');
22-
$table->string('type')->default(\App\Enums\PlanType::DEVELOPER);
22+
$table->string('type')->default(\App\Enums\PlanType::DEVELOPER->value);
2323
$table->json('description')->nullable();
2424
$table->boolean('is_active')->default(true);
2525
$table->decimal('price')->default('0.00');

0 commit comments

Comments
 (0)