iachat/db/migrate/20260309131532_add_custom_html_to_portals.rb
2026-03-09 11:47:41 -03:00

7 lines
183 B
Ruby

class AddCustomHtmlToPortals < ActiveRecord::Migration[7.1]
def change
add_column :portals, :custom_head_html, :text
add_column :portals, :custom_body_html, :text
end
end