Skip to content

Commit

Permalink
schema 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongwisdom committed Oct 31, 2023
1 parent 408ad09 commit aeb58c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/controlG/src/test/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ CREATE TABLE IF NOT EXISTS chat_message (
chat_room_id BIGINT NOT NULL,
sender_id BIGINT NOT NULL,
message VARCHAR(1000) NOT NULL,
sent_at TIMESTAMP NOT NULL,
sent_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
is_read BOOLEAN NOT NULL DEFAULT 0,
PRIMARY KEY(id)
);
Expand Down

0 comments on commit aeb58c2

Please sign in to comment.