Skip to content

Commit

Permalink
Merge pull request #293 from MOONSHOT-Team/develop
Browse files Browse the repository at this point in the history
[Deploy] v1.1.2 운영서버 배포
  • Loading branch information
its-sky authored Jun 5, 2024
2 parents e79727c + 11220ba commit 7c5eb3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moonshot-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spring:

flyway:
baseline-on-migrate: false
baseline-version: 2
baseline-version: 3
enabled: false

google:
Expand Down
1 change: 1 addition & 0 deletions moonshot-api/src/main/resources/db/migration/V4__DDL.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE user MODIFY image_url VARCHAR(512);
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class User {
@Column(nullable = false)
private String name;

@Column(nullable = false)
@Column(nullable = false, length = 512)
private String imageUrl;

private String email;
Expand Down

0 comments on commit 7c5eb3c

Please sign in to comment.