summaryrefslogtreecommitdiff
path: root/db/migrate/20191218190253_add_tab_width_to_user_preferences.rb
blob: b03dd8f76b97f61f8097aa111cbe677d54cb02d8 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddTabWidthToUserPreferences < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column(:user_preferences, :tab_width, :integer, limit: 2)
  end
end