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

chore: default authenticated 적용 #240

Merged
merged 10 commits into from
Jan 12, 2024
Prev Previous commit
Next Next commit
docs: ddl 컬럼 크기 변경
eunbc committed Jan 12, 2024
commit f88c96a6efd7815ae5354111cfa00e410c0ca38e
36 changes: 18 additions & 18 deletions db/conf.d/schema.sql
Original file line number Diff line number Diff line change
@@ -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
@@ -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