class CreateComments < ActiveRecord::Migration[7.0] def change create_table :comments do |t| t.references :blog, null: false, foreign_key: true t.string :username t.string :email t.string :website t.text :body t.string :status t.datetime :published_at t.timestamps end end end