skyhightech55 / furima-37322

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
family_name string null: false
first_name string null: false
family_name_kana string null: false
first_name_kana string null: false
birthday date null: false

items テーブル

Column Type Options
name string null: false
introduction text null: false
item_category_id integer null: false
item_condition_id integer null: false
shipping_cost_id integer null: false
prefecture_id integer null: false
shipping_day_id integer null: false
price integer null: false
user references null: false, foreign_key: true

deliver_addresses テーブル

Column Type Options
post_code string null: false
prefecture_id integer null: false
city string null: false
address string null: false
building string
telephone string null: false
order references null: false, foreign_key: true

orders テーブル

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