Open kakeru-one opened 4 months ago
https://github.com/ok-os-job-change-team/tetsuya-twitter-clone-bootcamp/blob/main/db/schema/post.schema#L6
create_table :posts, charset: 'utf8mb4', collation: 'utf8mb4_bin', comment: '投稿', force: :cascade do |t| t.references :user, null: false, foreign_key: true, comment: '投稿者ID' t.string :title, null: false, default: '無題', comment: 'タイトル' t.string :content, null: false, comment: '投稿本文' t.timestamps end
To Be
As Is
https://github.com/ok-os-job-change-team/tetsuya-twitter-clone-bootcamp/blob/main/db/schema/post.schema#L6
このissueに取り掛かる前に調べて理解してほしいこと。