== README
| Column |
Type |
Options |
| name |
string |
null: false, index: true |
| email |
string |
null: false, unique: true, foreign_key: true |
| pwd |
string |
null: false, unique: true, foreign_key: true |
- has_many : messages
- has_many : groups, through: :group_users
- has_many : group_users
|name|string|unique: true|
- has_many :users, through: :group_users
- has_many : group_users
- has_many : messages
| Column |
Type |
Options |
| user_id |
integer |
null: false, foreign_key: true |
| group_id |
integer |
null: false, foreign_key: true |
- belongs_to :user
- belongs_to :group
| Column |
Type |
Options |
| body |
text |
|
| image |
string |
|
|user|references|foreign_key: true, index:true|
|group|references|foreign_key: true, index:true|
- belongs_to :user
- belongs_to :group