Skip to content

LIB-programming-beginner/chat-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usersテーブル

Column Type Options
name string null: false, unique: true
email string null:false, unique: true
password string null: false, unique: true

Association

  • has_many :posts
  • has_many :groups_users
  • has_many :groups, through: :groups_users

groupsテーブル

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

Association

  • has_many :posts
  • has_many :groups_users
  • has_many :users, through: :groups_users

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

postsテーブル

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

Association

  • belongs_to group
  • belongs_to user

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published