Skip to content

Commit

Permalink
docs: ddl 컬럼 크기 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbc committed Jan 12, 2024
1 parent 9a42641 commit f88c96a
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions db/conf.d/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ CREATE TABLE admin
updated_at TIMESTAMP(6),
last_login_at TIMESTAMP(6) NOT NULL,
last_password_updated_at TIMESTAMP(6) NOT NULL,
email VARCHAR(255) NOT NULL,
name VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL,
phone_number VARCHAR(255) NOT NULL,
role VARCHAR(255),
status VARCHAR(255) NOT NULL
email VARCHAR(50) NOT NULL,
name VARCHAR(20) NOT NULL,
password VARCHAR(100) NOT NULL,
phone_number VARCHAR(20) NOT NULL,
role VARCHAR(20),
status VARCHAR(10) NOT NULL
);

CREATE TABLE booking
Expand Down Expand Up @@ -146,18 +146,18 @@ CREATE TABLE member
updated_at TIMESTAMP(6),
last_login_at TIMESTAMP(6) NOT NULL,
last_password_updated_at TIMESTAMP(6) NOT NULL,
birth_date VARCHAR(255),
detail_address VARCHAR(255),
email VARCHAR(255) NOT NULL,
gender VARCHAR(255),
name VARCHAR(255) NOT NULL,
password VARCHAR(255),
phone_number VARCHAR(255),
provider VARCHAR(255),
role VARCHAR(255),
status VARCHAR(255) NOT NULL,
street_address VARCHAR(255),
zip_code VARCHAR(255)
birth_date DATE,
detail_address VARCHAR(50),
email VARCHAR(50) NOT NULL,
gender VARCHAR(10),
name VARCHAR(20) NOT NULL,
password VARCHAR(100),
phone_number VARCHAR(20),
provider VARCHAR(10),
role VARCHAR(20),
status VARCHAR(10) NOT NULL,
street_address VARCHAR(50),
zip_code VARCHAR(5)
);

CREATE TABLE payment
Expand Down

0 comments on commit f88c96a

Please sign in to comment.