Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200811154632_add_gitpod_user_preferences.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0392c80d39c4488eb8a7246d669aaf9c7ca1cef3 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddGitpodUserPreferences < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :user_preferences, :gitpod_enabled, :boolean, default: false, null: false
  end
end