ok-os-job-change-team / tetsuya-twitter-clone-bootcamp

哲也のtwitter clone作成リポジトリ
1 stars 0 forks source link

ツイートの内容を10000バイトまで許可する #58

Open kakeru-one opened 4 months ago

kakeru-one commented 4 months ago

To Be

As Is

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

このissueに取り掛かる前に調べて理解してほしいこと。