mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
6 lines
195 B
Ruby
6 lines
195 B
Ruby
class AddFooterToSiteCustomization < ActiveRecord::Migration
|
|
def change
|
|
add_column :site_customizations, :footer, :text
|
|
add_column :site_customizations, :mobile_footer, :text
|
|
end
|
|
end
|