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
Boxiang Sun
gitlab-ce
Commits
fc95cd5b
Commit
fc95cd5b
authored
Oct 03, 2017
by
Jarka Kadlecova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix db schema
parent
b0df3c74
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
db/schema.rb
db/schema.rb
+16
-16
No files found.
db/schema.rb
View file @
fc95cd5b
...
...
@@ -32,8 +32,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
t
.
text
"description"
,
null:
false
t
.
string
"header_logo"
t
.
string
"logo"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
_with_timezone
"created_at"
,
null:
false
t
.
datetime
_with_timezone
"updated_at"
,
null:
false
t
.
text
"description_html"
t
.
integer
"cached_markdown_version"
end
...
...
@@ -274,8 +274,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
t
.
string
"encrypted_value_iv"
t
.
integer
"group_id"
,
null:
false
t
.
boolean
"protected"
,
default:
false
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
_with_timezone
"created_at"
,
null:
false
t
.
datetime
_with_timezone
"updated_at"
,
null:
false
end
add_index
"ci_group_variables"
,
[
"group_id"
,
"key"
],
name:
"index_ci_group_variables_on_group_id_and_key"
,
unique:
true
,
using: :btree
...
...
@@ -287,8 +287,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
t
.
string
"encrypted_value_salt"
t
.
string
"encrypted_value_iv"
t
.
integer
"pipeline_schedule_id"
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
_with_timezone
"created_at"
t
.
datetime
_with_timezone
"updated_at"
end
add_index
"ci_pipeline_schedule_variables"
,
[
"pipeline_schedule_id"
,
"key"
],
name:
"index_ci_pipeline_schedule_variables_on_schedule_id_and_key"
,
unique:
true
,
using: :btree
...
...
@@ -537,8 +537,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
t
.
integer
"project_id"
t
.
integer
"author_id"
,
null:
false
t
.
integer
"target_id"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
_with_timezone
"created_at"
,
null:
false
t
.
datetime
_with_timezone
"updated_at"
,
null:
false
t
.
integer
"action"
,
limit:
2
,
null:
false
t
.
string
"target_type"
end
...
...
@@ -576,8 +576,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
add_index
"forked_project_links"
,
[
"forked_to_project_id"
],
name:
"index_forked_project_links_on_forked_to_project_id"
,
unique:
true
,
using: :btree
create_table
"gpg_keys"
,
force: :cascade
do
|
t
|
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
_with_timezone
"created_at"
,
null:
false
t
.
datetime
_with_timezone
"updated_at"
,
null:
false
t
.
integer
"user_id"
t
.
binary
"primary_keyid"
t
.
binary
"fingerprint"
...
...
@@ -589,8 +589,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
add_index
"gpg_keys"
,
[
"user_id"
],
name:
"index_gpg_keys_on_user_id"
,
using: :btree
create_table
"gpg_signatures"
,
force: :cascade
do
|
t
|
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
_with_timezone
"created_at"
,
null:
false
t
.
datetime
_with_timezone
"updated_at"
,
null:
false
t
.
integer
"project_id"
t
.
integer
"gpg_key_id"
t
.
binary
"commit_sha"
...
...
@@ -789,8 +789,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
add_index
"members"
,
[
"user_id"
],
name:
"index_members_on_user_id"
,
using: :btree
create_table
"merge_request_diff_commits"
,
id:
false
,
force: :cascade
do
|
t
|
t
.
datetime
"authored_date"
t
.
datetime
"committed_date"
t
.
datetime
_with_timezone
"authored_date"
t
.
datetime
_with_timezone
"committed_date"
t
.
integer
"merge_request_diff_id"
,
null:
false
t
.
integer
"relative_order"
,
null:
false
t
.
binary
"sha"
,
null:
false
...
...
@@ -1115,8 +1115,8 @@ ActiveRecord::Schema.define(version: 20170928100231) do
create_table
"project_auto_devops"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
_with_timezone
"created_at"
,
null:
false
t
.
datetime
_with_timezone
"updated_at"
,
null:
false
t
.
boolean
"enabled"
t
.
string
"domain"
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