Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.19 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.19 KB

テーブル設計

usersテーブル

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

Association

  • has_many :room-users
  • has_many :rooms, through: room_users
  • has_many :messages

rooms テーブル

Column Type Options
name string null: false

Association

  • has_many :room-users
  • has_many :users, through: room_users
  • has_many :messages

room_users テーブル

Column Type Options
user references null:false, foreign_key: true
room references null:false, foreign_key: true

Association

  • belongs_to :room
  • belongs_to :user

messages テーブル

Column Type Options
content string
user references null:false, foreign_key: true
room references null:false, foreign_key: true

Association

  • belongs_to :room
  • belongs_to :user