okdmm / chat-space

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DB

users

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

Association

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

groups

Column Type Options
name string null: false

Association

  • has_many :users, through: :group_users
  • has_many :group_users
  • has_many :messages

groupe_users

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

Association

  • belongs_to :group
  • belongs_to :user

messages

Column Type Options
body text
image string
user references null: false,foreign_key: true
group references null: false, foreign_key: true

Association

  • belongs_to :group
  • belongs_to :user

About


Languages

Language:Ruby 70.5%Language:HTML 14.8%Language:CSS 9.7%Language:JavaScript 4.9%