db/migrate/20220408200125_create_users.rb (9 lines of code) (raw):

class CreateUsers < ActiveRecord::Migration[7.0] def change create_table :users do |t| t.string :name t.string :email t.timestamps end end end