- railsの練習で作ったチャットアプリです。
- 構成: haml, scss, jquery, mysql, unicorn + nginx + capistrano
- string "name", null: false, with: index
- string "name", null: false
- string "body"
- string "image"
- integer "user_id" foreign_key: true, null: false
- integer "chat_group_id" foreign_key: true, null: false
- integer "user_id" foreign_key: true, null: false
- integer "chat_group_id" foreign_key: true, null: false
- has_many :messages
- has_many :group_members
- has_many :chat_groups, through: :group_members
- has_many :messages
- has_many :group_members
- has_many :users, through: :group_members
- belongs_to :user
- belongs_to :chat_group
- belongs_to :user
- belongs_to :chat_group