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
a4f9723a
Commit
a4f9723a
authored
Feb 21, 2011
by
Christian Eichhorn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Add sorting for columns and indexes
* BugFix for models without tables
parent
9c68c8c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
annotate_models.rb
lib/annotate/annotate_models.rb
+7
-5
No files found.
lib/annotate/annotate_models.rb
View file @
a4f9723a
...
...
@@ -45,8 +45,9 @@ module AnnotateModels
info
=
"#
#{
header
}
\n
#
\n
"
info
<<
"# Table name:
#{
klass
.
table_name
}
\n
#
\n
"
max_size
=
klass
.
column_names
.
collect
{
|
name
|
name
.
size
}.
max
+
1
klass
.
columns
.
each
do
|
col
|
max_size
=
klass
.
column_names
.
collect
{
|
name
|
name
.
size
}.
max
||
0
max_Size
+=
1
klass
.
columns
.
sort_by
(
&
:name
).
each
do
|
col
|
attrs
=
[]
attrs
<<
"default(
#{
quote
(
col
.
default
)
}
)"
unless
col
.
default
.
nil?
attrs
<<
"not null"
unless
col
.
null
...
...
@@ -67,7 +68,7 @@ module AnnotateModels
# Check if the column has indices and print "indexed" if true
# If the indice include another colum, print it too.
if
options
[
:simple_indexes
]
# Check out if this column is indexed
if
options
[
:simple_indexes
]
&&
klass
.
table_exists?
# Check out if this column is indexed
indices
=
klass
.
connection
.
indexes
(
klass
.
table_name
)
if
indices
=
indices
.
select
{
|
ind
|
ind
.
columns
.
include?
col
.
name
}
indices
.
each
do
|
ind
|
...
...
@@ -80,7 +81,7 @@ module AnnotateModels
info
<<
sprintf
(
"# %-
#{
max_size
}
.
#{
max_size
}
s:%-15.15s %s"
,
col
.
name
,
col_type
,
attrs
.
join
(
", "
)).
rstrip
+
"
\n
"
end
if
options
[
:show_indexes
]
if
options
[
:show_indexes
]
&&
klass
.
table_exists?
info
<<
get_index_info
(
klass
)
end
...
...
@@ -93,7 +94,8 @@ module AnnotateModels
indexes
=
klass
.
connection
.
indexes
(
klass
.
table_name
)
return
""
if
indexes
.
empty?
max_size
=
indexes
.
collect
{
|
index
|
index
.
name
.
size
}.
max
+
1
max_size
=
indexes
.
collect
{
|
index
|
index
.
name
.
size
}.
max
||
0
max_size
+=
1
indexes
.
each
do
|
index
|
index_info
<<
sprintf
(
"# %-
#{
max_size
}
.
#{
max_size
}
s %s %s"
,
index
.
name
,
"(
#{
index
.
columns
.
join
(
","
)
}
)"
,
index
.
unique
?
"UNIQUE"
:
""
).
rstrip
+
"
\n
"
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