Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Deploy] v1.1.2 운영서버 배포 #293

Merged
merged 3 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading