Files
once-campfire/db/migrate/20231220143106_add_bio_to_users.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

8 lines
131 B
Ruby

class AddBioToUsers < ActiveRecord::Migration[7.2]
def change
change_table :users do |t|
t.text :bio
end
end
end