Skip to content

zorori777/chat-space2

Repository files navigation

Chat-space

DB作成

users table

column type null unique
name string false true
  • index

    name

  • アソシエーション

    has_many :messages

    has_many :groups, through: :group_users

    has_many :group_users

groups table

column type null
name string false
  • アソシエーション

    has_many :users, through: :group__users

    has_many :group_users

    has_many :messages

messages table

column type null
image string
body text
user_id references false
group_id references false
  • アソシエーション

    belongs_to :user

    belongs_to :group

group_users table

column type null
user_id references false
group_id references false
  • アソシエーション

    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