Skip to content

MihiroSaito/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

chat-space DB設計

userテーブル

column Type Options
email string null: false
password string null: false
nickname string null: false

Association

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

messagesテーブル

column Type Options
body text
image string
group_id integer null: false, foreign_key: true
user_id integer null: false, foreign_key: true

Association

  • belongs_to :group
  • belongs_to :user

groupテーブル

column Type Options
name string null: false

Association

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

group_usersテーブル

column Type Options
user_id integer null: false, foreign_key: true
group_id integer null: false, foreign_key: true

Association

  • belongs_to :user
  • belongs_to :group

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published