Showing
1 changed file
with
13 additions
and
15 deletions
... | @@ -2,21 +2,22 @@ | ... | @@ -2,21 +2,22 @@ |
2 | host: 'localhost',<br> | 2 | host: 'localhost',<br> |
3 | port : 3306,<br> | 3 | port : 3306,<br> |
4 | user: 'root',<br> | 4 | user: 'root',<br> |
5 | - password : '2016104101',<br> | 5 | + password : '',<br> |
6 | - database : 'userDB'<br> | 6 | + database : 'singer_composer'<br> |
7 | }<br><br> | 7 | }<br><br> |
8 | 게시판 사용 DB 정보{<br> | 8 | 게시판 사용 DB 정보{<br> |
9 | host: 'localhost',<br> | 9 | host: 'localhost',<br> |
10 | port : 3306,<br> | 10 | port : 3306,<br> |
11 | user: 'root',<br> | 11 | user: 'root',<br> |
12 | - password : '2016104101',<br> | 12 | + password : '',<br> |
13 | - database : 'board'<br> | 13 | + database : 'singer_composer'<br> |
14 | }<br><br> | 14 | }<br><br> |
15 | 15 | ||
16 | sql 사용 파일<br> | 16 | sql 사용 파일<br> |
17 | router/login/index.js<br> | 17 | router/login/index.js<br> |
18 | router/register/index.js<br> | 18 | router/register/index.js<br> |
19 | - router/board/index.js<br><br> | 19 | + router/board/index.js<br> |
20 | + router/profile.index.js<br><br> | ||
20 | 21 | ||
21 | DB 구조(*ID, password, type) -> 형식에 맞게 추가<br> | 22 | DB 구조(*ID, password, type) -> 형식에 맞게 추가<br> |
22 | *ID varchar(20), password varchar(20), type varchar(10) // type이 운영자인 경우 서버에서 변경<br> | 23 | *ID varchar(20), password varchar(20), type varchar(10) // type이 운영자인 경우 서버에서 변경<br> |
... | @@ -35,27 +36,24 @@ create table userdb( | ... | @@ -35,27 +36,24 @@ create table userdb( |
35 | 36 | ||
36 | create table board( | 37 | create table board( |
37 | idx int not null primary key auto_increment, | 38 | idx int not null primary key auto_increment, |
38 | - name varchar(50) not null, | 39 | + nickname varchar(50) not null, |
39 | title varchar(50) not null, | 40 | title varchar(50) not null, |
40 | content mediumtext not null, | 41 | content mediumtext not null, |
41 | regdate datetime not null, | 42 | regdate datetime not null, |
42 | modidate datetime not null, | 43 | modidate datetime not null, |
43 | - passwd varchar(50) not null, | 44 | + hit int not null, |
44 | - hit int not null | 45 | + ID varchar(20) not null |
45 | )engine=innodb;<br><br> | 46 | )engine=innodb;<br><br> |
46 | 47 | ||
47 | -DB구조 - board에서 사용됨(*idx, name, title, content, regdate, modidate, passwd, hit)<br> | ||
48 | -*idx int, name varchar(50), title varchar(50), content mediumtext, regdate datetime, modidate datetime, passwd varchar(50), hit int<br> | ||
49 | 48 | ||
50 | - | 49 | +<h2>LF 오류시 git config --global core.autocrlf true 입력<h2> |
51 | -<h2>LF 오류시 git config --global core.autocrlf true 입력<h2><br> | 50 | +<h2>게시글 reset 후 idx의 값이 1부터 시작하지 않을 경우<h2> |
52 | -<h2>게시글 reset 후 idx의 값이 1부터 시작하지 않을 경우 | ||
53 | ALTER TABLE board AUTO_INCREMENT = 1; | 51 | ALTER TABLE board AUTO_INCREMENT = 1; |
54 | SET @COUNT = 0; | 52 | SET @COUNT = 0; |
55 | UPDATE board SET idx = @COUNT:=@COUNT+1; | 53 | UPDATE board SET idx = @COUNT:=@COUNT+1; |
56 | -입력<h2><br><br> | 54 | +입력<br><br> |
57 | 55 | ||
58 | -최종 수정: 2021-11-20 03:46<br> | 56 | +최종 수정: 2021-11-20 05:02<br> |
59 | 최종 수정 내용: | 57 | 최종 수정 내용: |
60 | <h2>★★필수입력★★<h2> | 58 | <h2>★★필수입력★★<h2> |
61 | alter table board drop passwd; | 59 | alter table board drop passwd; | ... | ... |
-
Please register or login to post a comment