logo.rb 197 B

123456
  1. # sync logo to fs / only if settings already exists
  2. if ActiveRecord::Base.connection.tables.include?('settings')
  3. if Setting.column_names.include?('state_current')
  4. StaticAssets.sync
  5. end
  6. end