Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
annotate
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
annotate
Commits
b007666b
Commit
b007666b
authored
Dec 09, 2015
by
cuong.tran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #282 with error "foreign_keys is not implemented"
parent
a0682a49
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
annotate_models.rb
lib/annotate/annotate_models.rb
+3
-1
annotate_models_spec.rb
spec/annotate/annotate_models_spec.rb
+1
-0
No files found.
lib/annotate/annotate_models.rb
View file @
b007666b
...
@@ -288,7 +288,9 @@ module AnnotateModels
...
@@ -288,7 +288,9 @@ module AnnotateModels
fk_info
=
"#
\n
# Foreign Keys
\n
#
\n
"
fk_info
=
"#
\n
# Foreign Keys
\n
#
\n
"
end
end
foreign_keys
=
klass
.
connection
.
respond_to?
(
:foreign_keys
)
?
klass
.
connection
.
foreign_keys
(
klass
.
table_name
)
:
[]
return
""
unless
klass
.
connection
.
supports_foreign_keys?
&&
klass
.
connection
.
respond_to?
(
:foreign_keys
)
foreign_keys
=
klass
.
connection
.
foreign_keys
(
klass
.
table_name
)
return
""
if
foreign_keys
.
empty?
return
""
if
foreign_keys
.
empty?
max_size
=
foreign_keys
.
collect
{
|
fk
|
fk
.
name
.
size
}.
max
+
1
max_size
=
foreign_keys
.
collect
{
|
fk
|
fk
.
name
.
size
}.
max
+
1
...
...
spec/annotate/annotate_models_spec.rb
View file @
b007666b
...
@@ -17,6 +17,7 @@ describe AnnotateModels do
...
@@ -17,6 +17,7 @@ describe AnnotateModels do
double
(
"Conn"
,
double
(
"Conn"
,
:indexes
=>
indexes
,
:indexes
=>
indexes
,
:foreign_keys
=>
foreign_keys
,
:foreign_keys
=>
foreign_keys
,
:supports_foreign_keys?
=>
true
,
)
)
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