Skip to content

Commit f8fea01

Browse files
committed
refact: 도메인 수정으로 인한 DDL 파일 작성
1 parent 6c4cfb6 commit f8fea01

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- chat_room 테이블에 member_count, last_chat_id 컬럼 추가
2+
ALTER TABLE chat_room
3+
ADD COLUMN member_count bigint NOT NULL DEFAULT 0;
4+
ALTER TABLE chat_room
5+
ADD COLUMN last_chat_id bigint;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- chat_room 테이블에 member_count, last_chat_id 컬럼 추가
2+
ALTER TABLE chat_room
3+
ADD COLUMN member_count bigint NOT NULL DEFAULT 0;
4+
ALTER TABLE chat_room
5+
ADD COLUMN last_chat_id bigint;

0 commit comments

Comments
 (0)