6 lines
133 B
Ruby
6 lines
133 B
Ruby
class AddCustomStylesToAccount < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :accounts, :custom_styles, :text
|
|
end
|
|
end
|