Skip to content

Commit

Permalink
deploy: notice 테이블 생성 flyway 스크립트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeeeyeon committed Sep 2, 2024
1 parent 7a40307 commit f873d15
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Notice 테이블 생성
create table notice
(
created_at datetime(6) null,
id bigint auto_increment
primary key,
sequence bigint null,
updated_at datetime(6) null,
img_url varchar(255) null,
notice_url varchar(255) null
);

0 comments on commit f873d15

Please sign in to comment.