#chat-space2 DB設計
Column | Type | Option |
---|---|---|
name | string | null: false |
string | null: false | |
password | string | null: false |
- has_many : chats
- has_many : users_groups
- has_many : groups, through: :users_groups
Column | Type | Option |
---|---|---|
name | string | null: false |
- has_many : chats
- has_many : users_groups
- has_many : users, through: :users_groups
Column | Type | Option |
---|---|---|
text | text | null: true |
image | string | null: true |
users_id | integer | null: false, foreign_key: ture |
groups_id | integer | null: false, foreign_key: ture |
- belong_to : user
- belong_to : group
Column | Type | Option |
---|---|---|
users_id | integer | null: false, foreign_key: ture |
groups_id | integer | null: false, foreign_key: ture |
- belong_to : user
- belong_to : group