class CreateComments < ActiveRecord::Migration[6.1] def change create_table :comments do |t| t.text :content t.bigint :user_id t.boolean :is_approved, default: true t.timestamps end end end