saopen777 / furima_28321

0 stars 0 forks source link

README

This README would normally document whatever steps are necessary to get the application up and running.

Things you may want to cover:

テーブル設計

users テーブル

Column Type Options
nickname string null: false
email string null: false
password string null: false
family_name string null: false
first_name string null: false
family_name_kana string null: false
first_name_kana string null: false
birth_day date null: false

Association

items テーブル

Column Type Options
user references null: false, foreign_key: true
name string null: false
price integer null: false
description text null: false
burden integer null: false
days integer null: false
prefecture integer null: false
category integer null: false
condition integer null: false

Association

purchases テーブル

Column Type Option
postal_code string null: false
prefecture integer null: false
city string null: false
address string null: false
building string null: true
phone_number string null: false
order references null: false, foreign_key: true

Association

orders テーブル

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

Association