/chat-space

グループを作ってメッセージや画像を送信できるWebアプリ[TECH CAMP]

Primary LanguageRuby

Webアプリ公開URL

http://18.177.68.8/users/sign_in

Chat-space DB設計

usersテーブル

Column Type Options
name string null: false
email string null: false
password string null: false

Association

  • has_many :messages
  • has_many :groups_users
  • has_many :groups, through: :groups_users

groupsテーブル

Column Type Options
name string null: false
name index unique: true

Association

  • has_many :messages
  • has_many :groups_users
  • has_many :users, through: :groups_users

messagesテーブル

Column Type Options
body text
image text
group_id integer null: false, foreign_key: true
user_id integer null: false, foreign_key: true

Association

  • belongs_to :group
  • belongs_to :user

groups_usersテーブル

Column Type Options
user_id integer null: false, foreign_key: true
group_id integer null: false, foreign_key: true

Association

  • belongs_to :group
  • belongs_to :user