README

アプリ名

wizard_app

URL

https://wizard-app-20201226.herokuapp.com/

説明

devise機能を編集し、ウィザード形式(対話するように順番に操作が進んでいく方式)で新規登録をすることができます。

テーブル設計

users テーブル

Column Type Options
name string null: false
age integer null: false
email string null: false
password string null: false

Association

  • has_one :address

addresses テーブル

Column Type Options
postal_code integer
address text
user_id reference optional: true

Association

  • belongs_to :user

clone

% git clone https://github.com/erika618/wizard_app.git
% cd wizard_app
% bundle install
% yarn install
% rails db:create
% rails db:migrate