hasemoku / furima-35430

0 stars 0 forks source link

テーブル設計

users テーブル

Column Type Options
nick_name string null: false
email string unique: true , null: false
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
product_name string null: false
description text null: false
category_id integer null: false
condition_id integer null: false
shipping_charge_id integer null: false
delivery_source_id integer null: false
days_to_ship_id integer null: false
price integer null: false
user references foreign_key: true

Association

purchases テーブル

Column Type Options
user references foreign_key: true
item references foreign_key: true

Association

addresses テーブル

Column Type Options
postal_code string null: false
delivery_source_id integer null: false
municipali string null: false
city_string string null: false
bilding_name string
phone_number string null: false
purchase references foreign_key: true

Association