Skip to content

mk-67/protospace-35722

Repository files navigation

テーブル設計

users テーブル

Column Type Options
name string null: false
email string null: false
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
catch_copy text null: false
concept text null: false
user references null: false, foreign_key: true

Association

  • belongs_to :user
  • has_many :comments

comments テーブル

Column Type Options
text 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