jeongseonwoong / morbus

MIT License
4 stars 2 forks source link

mysql 데이터베이스 생성 #76

Closed YangHeeChang closed 4 months ago

YangHeeChang commented 4 months ago

cmd로 mysql 실행 후

  1. create database user;
  2. use user;
  3. create table symptom_record ( -> id int auto_increment primary key, -> symptom text not null, -> timestamp datetime not null -> );
  4. 제대로 생성되었는지 확인 스크린샷 2024-05-17 020911
YangHeeChang commented 4 months ago

mysql 대신 h2를 사용하게 되어 닫습니다.