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
Kazuhiko Shiozaki
gitlab-ce
Commits
55153660
Commit
55153660
authored
Feb 11, 2015
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add template boolean to services.
parent
29e606de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
app/models/service.rb
app/models/service.rb
+1
-1
db/migrate/20150211172122_add_template_to_service.rb
db/migrate/20150211172122_add_template_to_service.rb
+5
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
app/models/service.rb
View file @
55153660
...
...
@@ -10,7 +10,7 @@
# updated_at :datetime
# active :boolean default(FALSE), not null
# properties :text
#
#
tempalate :boolean default(FALSE)
# To add new service you should build a class inherited from Service
# and implement a set of methods
...
...
db/migrate/20150211172122_add_template_to_service.rb
0 → 100644
View file @
55153660
class
AddTemplateToService
<
ActiveRecord
::
Migration
def
change
add_column
:services
,
:template
,
:boolean
,
default:
false
end
end
db/schema.rb
View file @
55153660
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201502
09222013
)
do
ActiveRecord
::
Schema
.
define
(
version:
201502
11172122
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -365,6 +365,7 @@ ActiveRecord::Schema.define(version: 20150209222013) do
t
.
datetime
"updated_at"
t
.
boolean
"active"
,
default:
false
,
null:
false
t
.
text
"properties"
t
.
boolean
"template"
,
default:
false
end
add_index
"services"
,
[
"created_at"
,
"id"
],
name:
"index_services_on_created_at_and_id"
,
using: :btree
...
...
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