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
iv
gitlab-ce
Commits
17befe2a
Commit
17befe2a
authored
Apr 14, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6761 from jvanbaarsen/fixed-statemachine-warning
Make the db and statemachine default is the same
parents
3c91c581
5554eb16
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
db/migrate/20140414131055_change_state_to_allow_empty_merge_request_diffs.rb
...131055_change_state_to_allow_empty_merge_request_diffs.rb
+11
-0
db/schema.rb
db/schema.rb
+3
-3
No files found.
db/migrate/20140414131055_change_state_to_allow_empty_merge_request_diffs.rb
0 → 100644
View file @
17befe2a
class
ChangeStateToAllowEmptyMergeRequestDiffs
<
ActiveRecord
::
Migration
def
up
change_column
:merge_request_diffs
,
:state
,
:string
,
null:
true
,
default:
nil
end
def
down
change_column
:merge_request_diffs
,
:state
,
:string
,
null:
false
,
default:
'collected'
end
end
db/schema.rb
View file @
17befe2a
...
@@ -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:
201404
07135544
)
do
ActiveRecord
::
Schema
.
define
(
version:
201404
14131055
)
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"
...
@@ -109,7 +109,7 @@ ActiveRecord::Schema.define(version: 20140407135544) do
...
@@ -109,7 +109,7 @@ ActiveRecord::Schema.define(version: 20140407135544) do
add_index
"keys"
,
[
"user_id"
],
name:
"index_keys_on_user_id"
,
using: :btree
add_index
"keys"
,
[
"user_id"
],
name:
"index_keys_on_user_id"
,
using: :btree
create_table
"merge_request_diffs"
,
force:
true
do
|
t
|
create_table
"merge_request_diffs"
,
force:
true
do
|
t
|
t
.
string
"state"
,
default:
"collected"
,
null:
false
t
.
string
"state"
t
.
text
"st_commits"
t
.
text
"st_commits"
t
.
text
"st_diffs"
t
.
text
"st_diffs"
t
.
integer
"merge_request_id"
,
null:
false
t
.
integer
"merge_request_id"
,
null:
false
...
...
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