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