8 lines
158 B
Ruby
8 lines
158 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddBiographyToAccounts < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :accounts, :biography, :text
|
||
|
end
|
||
|
end
|