ShomaFujii / furima-34532

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 ,unique: true
encrypted_password string null: false
first_name_character string null: false
last_name_character string null: false
first_name_kana string null: false
last_name_kana string null: false
birthday date null: false

Association

items テーブル

Column Type Options
name string null: false
condition_id integer null: false
describe text null: false
category_id integer null: false
shipping_fee_id integer null: false
prefecture_id integer null: false
delivery_date_id integer null: false
price integer null: false
user references null: false, foreign_key: true

Association

purchasers テーブル

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

Association

addresses テーブル

Column Type Options
zip_code string null: false
prefecture_id integer null: false
city string null: false
street_number string null: false
building string
phone_number string null: false
purchaser references null: false, foreign_key: true

Association