Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 364 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 364 Bytes

monster-game-backend

Monster Game Backend

Create db migrations

Example:

yarn sequelize model:generate --name User --attributes username:string,password:string,oauth_provider:string,oauth_uid:string

Create db seeds

Example:

yarn sequelize seed:generate --name seed-users

Run db migrations

Example:

yarn db:migrate