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
1de433a5
Commit
1de433a5
authored
Oct 04, 2018
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-order feature flags table
parent
db980f92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
db/schema.rb
db/schema.rb
+1
-1
ee/changelogs/unreleased/feature-flags-mvc-ee.yml
ee/changelogs/unreleased/feature-flags-mvc-ee.yml
+1
-1
ee/db/migrate/20180626171125_add_feature_flags_to_projects.rb
...b/migrate/20180626171125_add_feature_flags_to_projects.rb
+2
-1
No files found.
db/schema.rb
View file @
1de433a5
...
...
@@ -1945,9 +1945,9 @@ ActiveRecord::Schema.define(version: 20180926140319) do
create_table
"operations_feature_flags"
,
id: :bigserial
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
,
null:
false
t
.
boolean
"active"
,
null:
false
t
.
datetime_with_timezone
"created_at"
,
null:
false
t
.
datetime_with_timezone
"updated_at"
,
null:
false
t
.
boolean
"active"
,
null:
false
t
.
string
"name"
,
null:
false
t
.
text
"description"
end
...
...
ee/changelogs/unreleased/feature-flags-mvc-ee.yml
View file @
1de433a5
---
title
:
Add Feature Flags MVC
merge_request
:
merge_request
:
7433
author
:
type
:
added
ee/db/migrate/20180626171125_add_feature_flags_to_projects.rb
View file @
1de433a5
...
...
@@ -7,10 +7,11 @@ class AddFeatureFlagsToProjects < ActiveRecord::Migration
def
change
create_table
:operations_feature_flags
,
id: :bigserial
do
|
t
|
t
.
integer
:project_id
,
null:
false
t
.
boolean
:active
,
null:
false
t
.
datetime_with_timezone
:created_at
,
null:
false
t
.
datetime_with_timezone
:updated_at
,
null:
false
t
.
boolean
:active
,
null:
false
t
.
string
:name
,
null:
false
t
.
text
:description
...
...
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