summaryrefslogtreecommitdiff
path: root/db/migrate/20200811154632_add_gitpod_user_preferences.rb
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