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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
8d403ef6
Commit
8d403ef6
authored
Jul 25, 2018
by
Mark Chao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add _date_from_milestone_id column
Tracking which milestone the milestone dates are sourced from
parent
646a37be
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
db/schema.rb
db/schema.rb
+3
-1
ee/db/migrate/20180711014025_add_date_columns_to_epics.rb
ee/db/migrate/20180711014025_add_date_columns_to_epics.rb
+3
-1
No files found.
db/schema.rb
View file @
8d403ef6
...
...
@@ -955,9 +955,11 @@ ActiveRecord::Schema.define(version: 20180803001726) do
t
.
text
"description"
t
.
text
"description_html"
t
.
boolean
"start_date_is_fixed"
t
.
boolean
"due_date_is_fixed"
t
.
date
"start_date_fixed"
t
.
integer
"start_date_sourcing_milestone_id"
t
.
boolean
"due_date_is_fixed"
t
.
date
"due_date_fixed"
t
.
integer
"due_date_sourcing_milestone_id"
end
add_index
"epics"
,
[
"assignee_id"
],
name:
"index_epics_on_assignee_id"
,
using: :btree
...
...
ee/db/migrate/20180711014025_add_date_columns_to_epics.rb
View file @
8d403ef6
...
...
@@ -6,9 +6,11 @@ class AddDateColumnsToEpics < ActiveRecord::Migration
def
change
change_table
:epics
do
|
t
|
t
.
boolean
:start_date_is_fixed
t
.
boolean
:due_date_is_fixed
t
.
date
:start_date_fixed
t
.
references
:start_date_sourcing_milestone
t
.
boolean
:due_date_is_fixed
t
.
date
:due_date_fixed
t
.
references
:due_date_sourcing_milestone
end
end
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