Skip to content

sochisancha/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usersテーブル

Column Type Options
name string null: false

Association

  • has_many :messages
  • has_many :groups, through: :members
  • has_many :members

messagesテーブル

Column Type Options
text text
image string
created_at datetime null:false
user_id integer null: false, foreign_key: true
group_id integer null: false, foreign_key: true

Association

  • belongs_to :user
  • belongs_to :group

groupsテーブル

Column Type Options
name string null:false

Association

  • has_many :users, through: :members
  • has_many :messages
  • has_many :members

membersテーブル

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published