| Column | Type | Options |
|---|---|---|
| name | string | null: false |
- has_many :chats, through: :chat_users
- has_many :chat_users
- has_many :messages
| Column | Type | Options |
|---|---|---|
| name | string | null: false |
- has_many :users, through: :chat_users
- has_many :chat_users
- has_many :messages
| Column | Type | Options |
|---|---|---|
| user_id | references | null: false, foreign_key: true |
| chat_id | references | null: false, foreign_key: true |
- belongs_to :user
- belongs_to :chat
| Column | Type | Options |
|---|---|---|
| message | text | null: false |
| image | string | |
| user_id | references | null: false, foreign_key:true |
| chat_id | references | null: false, foreign_key:true |
- belongs_to :user
- belongs_to :chat