Skip to content

tendergorilla55/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DB設計

usersテーブル

Column Type Options
name string null: false, unique: true
mail string index: true, nill: false, unique: true
password string null: false

Association

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

groupsテーブル

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

Association

  • has_many :users, through: group_users
  • has_many :group_users
  • varidates :name, presence :true

group_usersテーブル

Column Type Options
user references foreign_key: true
group references foreign_key: true

Association

  • belongs_to :user
  • belongs_to :group

messagesテーブル

Column Type Options
body text
image string
user references foreign_key: true
group references 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