Column | Type | Options |
---|---|---|
string | null: false | |
password | string | null: false |
name | string | null: false, index: true |
-- has_many :groups_users -- has_many :groups, through: :groups_users -- has_many :messages
Column | Type | Options |
---|---|---|
name | string | null: false |
-- has_many :groups_users -- has_many :users, through: :groups_users -- has_many :messages
Column | Type | Options |
---|---|---|
content | string | |
image | string | |
user | references | null: false, foreign_key: true |
group | references | null: false, foreign_key: true |
-- belongs_to :user -- belongs_to :group
Column | Type | Options |
---|---|---|
user | references | null: false, foreign_key: true |
group | references | null: false, foreign_key: true |
-- belongs_to :group -- belongs_to :user