Skip to content

Commit

Permalink
fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjenx committed Jan 10, 2025
1 parent 73fae93 commit 32149a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ CREATE TABLE entity (
updated_at INTEGER NOT NULL DEFAULT CURRENT_TIMESTAMP,
-- UTC timestamp in milliseconds
expires_at INTEGER,
-- JSONB Blob use jsonb_ operators
value BLOB AS String NOT NULL,
-- UTC timestamp in milliseconds
read_at INTEGER,
-- UTC timestamp in milliseconds
write_at INTEGER NOT NULL DEFAULT CURRENT_TIMESTAMP,
-- JSONB Blob use jsonb_ operators
value BLOB AS String NOT NULL,
PRIMARY KEY (entity_name, entity_key)
);

Expand Down

0 comments on commit 32149a9

Please sign in to comment.