Skip to content

Commit

Permalink
Merge pull request #67 from eodya/feature/#66
Browse files Browse the repository at this point in the history
[#66] Flyway v1.1 버전 생성
  • Loading branch information
jay-so authored Apr 10, 2024
2 parents 4a648c6 + a793660 commit 9b892f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/com/eodya/api/common/config/S3Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ public class S3Config {
@Bean
public AmazonS3 s3Client() {
AWSCredentials credentials = new BasicAWSCredentials(accessKey, accessSecret);
System.out.println("accessKey: " + accessKey);
System.out.println("accessSecret: " + accessSecret);
System.out.println("region: " + region);
return AmazonS3ClientBuilder.standard()
.withCredentials(new AWSStaticCredentialsProvider(credentials))
.withRegion(region).build();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- place 테이블에서 recommend_count 컬럼의 이름을 review_count로 변경
ALTER TABLE `place`
CHANGE COLUMN `recommend_count` `review_count` INT NOT NULL;

-- bookmark 테이블에서 status 컬럼 삭제
ALTER TABLE `bookmark`
DROP COLUMN `status`;

0 comments on commit 9b892f9

Please sign in to comment.