phoenix-framework
피닉스에서의 Ecto 모델 사용법
수색…
소개
phoenix 프레임 워크에서 ecto 모델을 생성, 편집 및 사용하는 방법.
명령 줄에서 사용자 모델 생성
username
, password_hash
, email_id
, created_at
, updated_at
를 사용하여 json
사용자 모델을 생성하려면 다음을 입력하십시오.
mix phoenix.gen.json User users username:string email_id:string password_hash:string timestamps()
외골격 모델의 이전
mix phoenix.gen.html
을 실행하거나 mix phoenix.gen.json
을 명령 줄에서 mix phoenix.gen.html
하면 프로젝트 폴더의 priv -> repo -> migrations
에 마이그레이션이 생성됩니다.
마이그레이션을 실행하려면 mix ecto.migrate
입력 mix ecto.migrate
.
프로젝트의 마이그레이션을 생성하려면 mix ecto.gen migrations <model_name>
기본 저장소와 다른 저장소에 대한 마이그레이션을 생성하려면 mix ecto.gen migrations <model_name> -r <repo_name>
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow