gitlab-org--gitlab-foss/db/migrate/20181027114222_add_first_da...

10 lines
209 B
Ruby
Raw Normal View History

2018-11-06 21:16:49 +00:00
# frozen_string_literal: true
class AddFirstDayOfWeekToUserPreferences < ActiveRecord::Migration[5.0]
2018-11-06 21:16:49 +00:00
DOWNTIME = false
def change
add_column :user_preferences, :first_day_of_week, :integer
end
end