k98a73 / protospace-37676

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

テーブル設計

users テーブル

Column Type Options
email string null: false
encrypted_password string null: false
name 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 :users
  • has_many :comments

comments テーブル

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

Association

  • belongs_to :users
  • belongs_to :prototypes

About


Languages

Language:Ruby 62.7%Language:HTML 25.5%Language:CSS 6.6%Language:JavaScript 4.5%Language:SCSS 0.6%