Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
6e08e7aa
Commit
6e08e7aa
authored
Jul 22, 2015
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check if session_expire_delay column exists before adding the column.
parent
39dc39e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
db/migrate/20150609141121_add_session_expire_delay_for_application_settings.rb
...1121_add_session_expire_delay_for_application_settings.rb
+4
-2
No files found.
db/migrate/20150609141121_add_session_expire_delay_for_application_settings.rb
View file @
6e08e7aa
class
AddSessionExpireDelayForApplicationSettings
<
ActiveRecord
::
Migration
def
change
add_column
:application_settings
,
:session_expire_delay
,
:integer
,
default:
10080
,
null:
false
unless
column_exists?
(
:application_settings
,
:session_expire_delay
)
add_column
:application_settings
,
:session_expire_delay
,
:integer
,
default:
10080
,
null:
false
end
end
end
\ No newline at end of file
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment