Skip to content

Commit

Permalink
feat(db): add prisma migration field that adds a new updated_at field
Browse files Browse the repository at this point in the history
  • Loading branch information
PJColombo committed Jun 13, 2024
1 parent 3393953 commit 363a5aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/moody-fireants-itch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@blobscan/db": minor
---

Added an updated at field to blob storages state model
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "blob_storages_state" ADD COLUMN "updated_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;

0 comments on commit 363a5aa

Please sign in to comment.