Skip to content

koki-73/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

usersテーブル

Column Type Options
name string null: false
email string null: false
password string null: false

Association

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

groupsテーブル

Column Type Options
name string null: false

Association

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

users_groupsテーブル

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

Association

  • belongs_to :group
  • belongs_to :user

messagesテーブル

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