Skip to content

Commit

Permalink
[Fix] : url 스키마 용량변경
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Dec 7, 2023
1 parent 7d59e92 commit f29c938
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CREATE TABLE users
email VARCHAR(55) DEFAULT NULL,
nickname VARCHAR(20) DEFAULT NULL,
password VARCHAR(100) DEFAULT NULL,
image_url VARCHAR(100) DEFAULT NULL,
image_url VARCHAR(255) DEFAULT NULL,
gender VARCHAR(6) DEFAULT NULL,
major VARCHAR(50) DEFAULT NULL,
created_date TIMESTAMP DEFAULT NULL,
Expand All @@ -27,7 +27,7 @@ CREATE TABLE post
posted_user_id BIGINT NOT NULL,
title VARCHAR(55) DEFAULT NULL,
content VARCHAR(255) DEFAULT NULL,
chat_url VARCHAR(100) DEFAULT NULL,
chat_url VARCHAR(255) DEFAULT NULL,
major VARCHAR(50) DEFAULT NULL,
study_person INTEGER DEFAULT NULL,
filtered_gender VARCHAR(6) DEFAULT NULL,
Expand Down

0 comments on commit f29c938

Please sign in to comment.