tsujiyuma / furima-40329

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_table

|Column |Type |Options| |nickname |string |null:false| |email |string |null: false, unique: true| |encrypted_password |string |null:false| |family_name_kanji |string |null:false| |first_name_kanji |string |null:false| |family_name_kana |string |null:false| |first_name_kana |string |null:false| |birthday |date |null:false|

Asosiataion

items_table

|Column |Type |Options| |user |references |null:false, foreign_key:true| |name |string |null:false| |description |text |null:false| |category_id |integer |null:false| |status_id |integer |null:false| |shipping_fee_id |integer |null:false| |prefecture_id |integer |null:false| |shippng_day_id |integer |null:false| |price |integer |null:false|

Asosiation

orders_table

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

Asosiation

purchases_table

|Column |Type |Options| |order |references |null:false, foreign_key:true| |post_code |string |null:false| |prefecuture_id |integer |null:false| |municipality |string |null:false| |street_addres |string |null:false| |building_name |string | | |photo_num |string |null:false|

Asosiation