Skip to content

tsutsujun/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

395 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

ChatSpace データベース設計

groupsテーブル

Column Type Options
title string null: false, unique: true, index: true

Association

  • has_many :group_users
  • has_many :users, through: :group_users
  • has_many :messages

usersテーブル

Column Type Options
name string null: false, unique: true, index: true
email string null: false, unique: true, index: true
encrypted_password string null: false

Association

  • has_many :group_users
  • has_many :groups, through: :group_users
  • has_many :messages

group_usersテーブル

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

Association

  • belongs_to :group
  • belongs_to :user

messagesテーブル

Column Type Options
body text
image string
group references null: false, foreign_key: true
user references null: false, foreign_key: true

Association

  • belongs_to :group
  • belongs_to :user

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors