1 2 3 4 5
class AddIsAdminToUser < ActiveRecord::Migration[8.0] def change add_column :users, :is_admin, :boolean, default: false end end