0
0

オリジナルアプリ(ウォンツ)の制作過程〜テーブル設計〜

Posted at

はじめに

こんにちは、今日もオリジナルアプリの制作過程を記録していきます。今日は要件定義についてです!
このシリーズの記事では、企画・要件定義から設計、実装、テストまでの全てのプロセスを詳細に説明します。毎日少しずつ進めていきますので、アドバイスや指摘があればぜひ教えてください。

今日はテーブルを設計して見ました。

テーブル設計

users テーブル

Column Type Options
name string null: false
email string null: false, unique: true
password_confirmation string null: false
first_name string null: false
last_name string null: false
first_name_kana string null: false
last_name_kana string null: false
birthday date null: false

Association

  • has_many :requests
  • has_many :products
  • has_many :purchases

requests テーブル

Column Type Options
title string null: false
description text null: false
category_id integer null: false
max_price integer null: false
min_price integer null: false
user references null: false, foreign_key: true
image string
shipping_charge_id integer null: false

Association

  • belongs_to :user
  • has_many :products
  • has_many :comments

products テーブル

Column Type Options
title string null: false
description text null: false
price integer null: false
user references null: false, foreign_key: true
request references null: false, foreign_key: true
image string
condition_id integer null: false
shipping_area_id integer null: false
shipping_day_id integer null: false

Association

  • belongs_to :user
  • belongs_to :request
  • has_one :purchase

purchases テーブル

Column Type Options
postal_code string null: false
shipping_area_id integer null: false
city string null: false
address string null: false
building_name string
phone_number string null: false
history references null: false, foreign_key: true

Association

  • belongs_to :history

histories テーブル

Column Type Options
user references null: false, foreign_key: true
product references null: false, foreign_key: true
request references null: false, foreign_key: true

Association

  • belongs_to :user
  • belongs_to :product
  • belongs_to :request

question_response テーブル

Column Type Options
content text null: false
user references null: false, foreign_key: true
request references null: false, foreign_key: true

Association

  • belongs_to :user
  • belongs_to :request
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0