Files
shelflife/db/migrate/20250802030833_add_name_to_users.rb
Dan Milne 2a413c685f
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
First commit
2025-08-23 16:31:01 +10:00

6 lines
113 B
Ruby

class AddNameToUsers < ActiveRecord::Migration[8.0]
def change
add_column :users, :name, :string
end
end