Files
clinch/db/migrate/20251104022439_add_name_to_users.rb
Dan Milne 19bfc21f11
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
Move sessions into their own view for easier management
2025-11-04 15:19:39 +11:00

6 lines
113 B
Ruby

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