debian-mirror-gitlab/db/migrate/20181027114222_add_first_day_of_week_to_user_preferences.rb
2019-07-07 11:18:12 +05:30

10 lines
209 B
Ruby

# 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