Skip to content

sat0chika/chat-space

Repository files navigation

README

groups_usersテーブル

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

Association

  • belongs_to :user
  • belongs_to :group

messagesテーブル

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

Association

  • belongs_to :user
  • belongs_to :group

usersテーブル

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

Association

  • has_many :messages
  • has_many :groups, through: :groups_users
  • has_many :groups_users

groupsテーブル

Column Type Options
name string null: false

Association

  • has_many :messages
  • has_many :users, through: :groups_users
  • has_many :groups_users

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published