BigW Consortium Gitlab

20170215200045_remove_theme_id_from_users.rb 190 Bytes
class RemoveThemeIdFromUsers < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    remove_column :users, :theme_id, :integer
  end
end