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
dfe844e9
Commit
dfe844e9
authored
Aug 01, 2018
by
Mark Chao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix migration ordering
parent
13fac290
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
db/schema.rb
db/schema.rb
+4
-4
ee/db/migrate/20180711014025_add_date_columns_to_epics.rb
ee/db/migrate/20180711014025_add_date_columns_to_epics.rb
+4
-4
No files found.
db/schema.rb
View file @
dfe844e9
...
...
@@ -954,12 +954,12 @@ ActiveRecord::Schema.define(version: 20180803001726) do
t
.
string
"title_html"
,
null:
false
t
.
text
"description"
t
.
text
"description_html"
t
.
boolean
"start_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"
t
.
date
"start_date_fixed"
t
.
date
"due_date_fixed"
t
.
boolean
"start_date_is_fixed"
t
.
boolean
"due_date_is_fixed"
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 @
dfe844e9
...
...
@@ -7,12 +7,12 @@ class AddDateColumnsToEpics < ActiveRecord::Migration
def
change
change_table
:epics
do
|
t
|
t
.
boolean
:start_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
t
.
date
:start_date_fixed
t
.
date
:due_date_fixed
t
.
boolean
:start_date_is_fixed
t
.
boolean
:due_date_is_fixed
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