mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
7 lines
217 B
Ruby
7 lines
217 B
Ruby
class AddEmbeddedCssToSiteCustomizations < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :site_customizations, :embedded_css, :text
|
|
add_column :site_customizations, :embedded_css_baked, :text
|
|
end
|
|
end
|