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

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

class AddFirstDayOfWeekToUserPreferences < ActiveRecord::Migration[5.0]
  DOWNTIME = false

  def change
    add_column :user_preferences, :first_day_of_week, :integer
  end
end