Skip to content

Commit

Permalink
feat: userDao 테스트용 script 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
be-student committed Mar 25, 2023
1 parent 6e0fb4c commit 6cd7fc3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# 기능목록

## DB 정보

chess 라는 schema 를 통해서 실제 게임을 관리합니다
chess_test 라는 schema 를 통해서 테스트를 관리합니다

```java
System.getenv("password");
```

를 통해서 mysql 패스워드를 관리합니다
env 에 password 로 패스워드를 등록해주세요

script.sql
에 테이블 생성 스크립트가 있습니다

## 2단계

- view
Expand Down
5 changes: 5 additions & 0 deletions script.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
create table chess_test.table_name
(
user_id varchar(100) null,
name varchar(100) null
);

0 comments on commit 6cd7fc3

Please sign in to comment.