debian-mirror-gitlab/db/migrate/20181027114222_add_first_day_of_week_to_user_preferences.rb
2019-05-30 16:15:17 +05:30

10 lines
204 B
Ruby

# frozen_string_literal: true
class AddFirstDayOfWeekToUserPreferences < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :user_preferences, :first_day_of_week, :integer
end
end