Skip to content

Commit

Permalink
jsonb bug fixed in projects migration
Browse files Browse the repository at this point in the history
  • Loading branch information
abdurashid-dev committed Apr 11, 2023
1 parent 5479f75 commit bf7cddc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function up()
$table->increments('id');
$table->string('name');
$table->integer('status');
$table->jsonb('details');
$table->json('details');
$table->softDeletes();
$table->timestamps();
});
Expand Down

0 comments on commit bf7cddc

Please sign in to comment.