5 lines
115 B
Ruby
5 lines
115 B
Ruby
class AddBioToProfiles < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :profiles, :bio, :text
|
|
end
|
|
end
|