discourse/db/migrate/20130913210454_add_mobile_t...

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

10 lines
312 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddMobileToSiteCustomizations < ActiveRecord::Migration[4.2]
def change
add_column :site_customizations, :mobile_stylesheet, :text
add_column :site_customizations, :mobile_header, :text
add_column :site_customizations, :mobile_stylesheet_baked, :text
end
end