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

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