Skip to content

Commit

Permalink
Merge pull request #55 from NoahNxT/main
Browse files Browse the repository at this point in the history
  • Loading branch information
MohmmedAshraf authored Jan 22, 2024
2 parents 3d7d5fc + 95c1bda commit 7f8755a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_phrases_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function up(): void
$table->string('key');
$table->string('group');
$table->text('value')->nullable();
$table->text('status')->default(StatusEnum::active->value);
$table->string('status')->default(StatusEnum::active->value);
$table->json('parameters')->nullable();
$table->text('note')->nullable();
$table->timestamps();
Expand Down

0 comments on commit 7f8755a

Please sign in to comment.