maezi1229 / tell_me_about_me

0 stars 0 forks source link

README

This README would normally document whatever steps are necessary to get the application up and running.

Things you may want to cover:

DB設計

usersテーブル

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

Association

groupsテーブル

Column Type Options
name string null: false

Association

users_groupsテーブル

Column Type Options
user references null: false, foreign_key: true
group references null: false, foreign_key: true

Association

messagesテーブル

Column Type Options
body text
image string
user references null: false, foreign_key: true
group references null: false, foreign_key: true

Association