인파

You Can Become A

늦게 시작해도 누구든지 노력하면 개발자가 될수 있어요 !

공부한 내용을 정리합니다
Node.js/Sequelize

[ORM] 📚 시퀄라이즈 - 모델(테이블) 정의하기

Mysql 테이블 생성 구문 create schema `nodejs` default character set utf8; use nodejs; drop table if exists comments; drop table if exists users; create table nodejs.users ( id int not null primary key auto_increment, name varchar(20) not null, age smallint unsigned not null, married tinyint not null, -- tinyint는 0과 1 불리언 용 comment text null, -- 자기 소개 created_at datetime not null default now(), unique i..

category_image
인파_
2021.11.10
(0)