Column | Type | Option |
---|---|---|
name | string | null: false |
string | null: false, unique: true | |
password | string | null: false |
- has_many :messages
- has_many :groups, through: :users_groups
- has_many :users_groups
Column | Type | Option |
---|---|---|
name | string | null: false |
- has_many :messages
- has_many :users, through: :users_groups
- has_many :users_groups
Column | Type | Option |
---|---|---|
body | text | |
image | string | |
user_id | references | null: false, foreign_key: true |
group_id | references | null: false, foreign_key: true |
- belongs_to :user
- belongs_to :group
Column | Type | Option |
---|---|---|
user_id | references | null: false, foreign_key: true |
group_id | references | null: false, foreign_key: true |
- belongs_to :user
- belongs_to :group