goemon-suzu / furima-34847

0 stars 0 forks source link

README

テーブル設計

users テーブル

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

Association

items テーブル

Column Type Options
item_name string null: false
description text null: false
category_id integer null: false
condition_id integer null: false
delivery_setting_id integer null: false
shipment_area_id integer null: false
shipping_day_id integer null: false
price integer null: false
user references null: false, foreign_key: true

Association

orders テーブル

Column Type Options
user references null: false, foreign_key: true
item references null: false, foreign_key: true

Association

addresses テーブル

Column Type Options
postal_code string null: false
prefecture_id integer null: false
city string null: false
street_address string null: false
building_name string
phone_number string null: false
order references null: false, foreign_key: true

Association