Skip to content

Commit

Permalink
[데이터베이스] 마리아 디비 도커 구축 v3 user table create
Browse files Browse the repository at this point in the history
  • Loading branch information
Zundal committed Oct 10, 2022
1 parent 879ee72 commit 23a9d4d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions database/makeTables.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# CREATR TABLE
```
create table user_client
(
id int null,
user_name varchar(30) null,
password varchar(100) not null,
email varchar(100) not null,
nick_name varchar(100) null,
create_date datetime,
modify_date datetime
);
create table user_log
(
id int null,
login_date datetime,
login_status varchar(50)
);
```

# 인덱스 만들어야 함

0 comments on commit 23a9d4d

Please sign in to comment.