mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-09-18 22:34:56 +09:00
df76a227dc
First open source release of Campfire 🎉
8 lines
131 B
Ruby
8 lines
131 B
Ruby
class AddBioToUsers < ActiveRecord::Migration[7.2]
|
|
def change
|
|
change_table :users do |t|
|
|
t.text :bio
|
|
end
|
|
end
|
|
end
|