Skip to content

Terutaka/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

Image from Gyazo

Image from Gyazo

Image from Gyazo

Image from Gyazo

usersテーブル

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

Association

  • has_many :massages
  • has_many :groups, through: :members
  • has_many :members

groupsテーブル

Column Type Options
name string null: false

Association

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

groupusersテーブル

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
  • has_many :message

messagesテーブル

Column Type Options
body text
image string
group_id integer foreign_key: true
user_id integer foreign_key: true

Association

  • belongs_to :member

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published