Skip to content

Jyoumama/protospace-40508

Repository files navigation

README

テーブル設計

users テーブル

Column Type Options
name string null: false
email string null: false, unique: true
encrypted_password string null: false
profile text null: false
occupation text null: false
position text null: false

Association

  • has_many :prototypes
  • has_many :comments

prototypes テーブル

Column Type Options
title string null: false
user references null: false, foreign_key: true
catch_copy text null: false
concept text null: false

Association

  • belongs_to :user
  • has_many :comments

comments テーブル

Column Type Options
content text null: false
user references null: false, foreign_key: true
prototype references null: false, foreign_key: true

Association

  • belongs_to :user
  • belongs_to :prototype

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published