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