Easily Stream ChatGPT Responses with Rails 7, Turbostream, Tailwind and Sidekiq
twitter.com2 pointsby strudey2 comments
bin/rails generate migration CreateChats user:references
bin/rails generate migration CreateMessages chat:references role:integer content:string
Will need to add null: false and default: 0 on the enum manually if you so desire as Rails apparently doesn't support generating with those options.