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

20150604202921_add_session_expire_seconds_for_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8096efc6865aab05b3edb6bf949658124c7f1cf2 (plain)
1
2
3
4
5
class AddSessionExpireSecondsForApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :session_expire_seconds, :integer, default: 604800, null: false
  end
end