yamakazugo / furima-29649

0 stars 0 forks source link

Portfolio name : FURIMA

FURIMA 誰でも売りたい商品を投稿し自分の出し値をつける。その投稿した商品を観覧者が購入できる、アプリケーションです。

Url: https://furima-29649.herokuapp.com

ID/Pass

Demo(動画)

*ユーザー管理機能

88d7740b6df3a4f1edfebfb61f7d5b9c

*商品出品機能

95d67f439ddb8d4e9cda7a104f96df6d

*商品購入機能

960db16fd4e3529ecb0383dd9bd877d3

テーブル設計

users テーブル

Column Type Options
nickname string null: false
email string null: false
encrypted_password string null: false
first_name string null: false
last_name string null: false
first_name_kana string null: false
last_name_kana string null: false
birthday date null: false

Association

items テーブル

Column Type Options
item_name string null: false
explain text null: false
category_id integer null: false
item_condition_id integer null: false
delivery_feed_id integer null: false
shipping_origin_id integer null: false
day_until_shipping_id integer null: false
price integer null: false
user references null: false, foreign_key: true

Association

address テーブル

Column Type Options
post_code string null: false
prefecture_id integer null: false
city string null: false
house_number string null: false
building_name string
phone_number string null: false
purchase references null: false, foreign_key: true

Association

purchase テーブル

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

Association