1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 12:35:04 +00:00
discourse/db/migrate/20150806210727_add_embedded_css_to_site_customizations.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
248 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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