BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
cb4b2e31
Unverified
Commit
cb4b2e31
authored
Apr 28, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added migration
parent
284d4f76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
20170428123910_add_clientside_sentry_to_application_settings.rb
...28123910_add_clientside_sentry_to_application_settings.rb
+9
-0
schema.rb
db/schema.rb
+4
-1
No files found.
db/migrate/20170428123910_add_clientside_sentry_to_application_settings.rb
0 → 100644
View file @
cb4b2e31
# rubocop:disable all
class
AddClientsideSentryToApplicationSettings
<
ActiveRecord
::
Migration
def
change
change_table
:application_settings
do
|
t
|
t
.
boolean
:clientside_sentry_enabled
,
default:
false
t
.
string
:clientside_sentry_dsn
end
end
end
db/schema.rb
View file @
cb4b2e31
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#
#
# It's strongly recommended that you check this file into your version control system.
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2017042
6175636
)
do
ActiveRecord
::
Schema
.
define
(
version:
2017042
8123910
)
do
# These are extensions that must be enabled in order to support this database
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
enable_extension
"plpgsql"
...
@@ -121,6 +121,8 @@ ActiveRecord::Schema.define(version: 20170426175636) do
...
@@ -121,6 +121,8 @@ ActiveRecord::Schema.define(version: 20170426175636) do
t
.
boolean
"usage_ping_enabled"
,
default:
true
,
null:
false
t
.
boolean
"usage_ping_enabled"
,
default:
true
,
null:
false
t
.
string
"uuid"
t
.
string
"uuid"
t
.
integer
"cached_markdown_version"
t
.
integer
"cached_markdown_version"
t
.
boolean
"clientside_sentry_enabled"
,
default:
false
t
.
string
"clientside_sentry_dsn"
end
end
create_table
"audit_events"
,
force: :cascade
do
|
t
|
create_table
"audit_events"
,
force: :cascade
do
|
t
|
...
@@ -296,6 +298,7 @@ ActiveRecord::Schema.define(version: 20170426175636) do
...
@@ -296,6 +298,7 @@ ActiveRecord::Schema.define(version: 20170426175636) do
t
.
boolean
"locked"
,
default:
false
,
null:
false
t
.
boolean
"locked"
,
default:
false
,
null:
false
end
end
add_index
"ci_runners"
,
[
"contacted_at"
],
name:
"index_ci_runners_on_contacted_at"
,
using: :btree
add_index
"ci_runners"
,
[
"is_shared"
],
name:
"index_ci_runners_on_is_shared"
,
using: :btree
add_index
"ci_runners"
,
[
"is_shared"
],
name:
"index_ci_runners_on_is_shared"
,
using: :btree
add_index
"ci_runners"
,
[
"locked"
],
name:
"index_ci_runners_on_locked"
,
using: :btree
add_index
"ci_runners"
,
[
"locked"
],
name:
"index_ci_runners_on_locked"
,
using: :btree
add_index
"ci_runners"
,
[
"token"
],
name:
"index_ci_runners_on_token"
,
using: :btree
add_index
"ci_runners"
,
[
"token"
],
name:
"index_ci_runners_on_token"
,
using: :btree
...
...
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