Skip to content

Commit

Permalink
[fix] : gallery ddl의 position을 TEXT에서 VARCHAR(255) 로 변경한다
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Feb 20, 2024
1 parent 29cbeb1 commit 5868456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/main/resources/db/migration/V7__add_gallery.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ create table if not exists gallery (
target_id BIGINT unique not null,
survey_id BIGINT unique not null,
bookmarked_count INT not null,
position TEXT not null,
position VARCHAR(255) not null,
created_at TIMESTAMP(6) not null,
updated_at TIMESTAMP(6) not null
);

0 comments on commit 5868456

Please sign in to comment.