Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Mar 12, 2024
1 parent 39d0058 commit 9dd47ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
public function up(): void
{
Schema::table('posts', function (Blueprint $table) {
$table->string('type')->default(\App\Casts\PostTypeEnum::Article);
$table->string('status')->default(\App\Casts\StatusEnum::Draft);
$table->string('type')->default(\App\Models\Enums\PostTypeEnum::Article);
$table->string('status')->default(\App\Models\Enums\StatusEnum::Draft);
});
}

Expand Down

0 comments on commit 9dd47ed

Please sign in to comment.