Skip to content

kohama66/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

usersテーブル

Column Type Option
name string null: false
email string null: false, unique: true
password string null: false

Association

  • has_many :messages
  • has_many :groups, through: :users_groups
  • has_many :users_groups

groupsテーブル

Column Type Option
name string null: false

Association

  • has_many :messages
  • has_many :users, through: :users_groups
  • has_many :users_groups

messagesテーブル

Column Type Option
body text
image string
user_id references null: false, foreign_key: true
group_id references null: false, foreign_key: true

Association

  • belongs_to :user
  • belongs_to :group

users_groupsテーブル

Column Type Option
user_id references null: false, foreign_key: true
group_id references 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