Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paperclip
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paperclip
Commits
75d10b91
Commit
75d10b91
authored
Jan 13, 2009
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed the STI query to use #construct_finder_sql as per Joe Van Dyk's suggestion.
parent
cced76cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
17 deletions
+1
-17
tasks/paperclip_tasks.rake
+1
-17
No files found.
tasks/paperclip_tasks.rake
View file @
75d10b91
...
...
@@ -14,26 +14,10 @@ def obtain_attachments
end
end
def
quote_table
(
table
)
ActiveRecord
::
Base
.
connection
.
quote_table_name
(
table
)
end
def
quote_column
(
column
)
ActiveRecord
::
Base
.
connection
.
quote_column_name
(
column
)
end
def
type_condition
(
klass
)
if
klass
.
superclass
==
ActiveRecord
::
Base
""
else
"WHERE
#{
quote_column
(
klass
.
inheritance_column
)
}
= '
#{
klass
.
name
}
'"
end
end
def
for_all_attachments
klass
=
obtain_class
names
=
obtain_attachments
ids
=
klass
.
connection
.
select_values
(
"SELECT
#{
quote_column
(
klass
.
primary_key
)
}
FROM
#{
quote_table
(
klass
.
table_name
)
}
#{
type_condition
(
klass
)
}
"
)
ids
=
klass
.
connection
.
select_values
(
klass
.
send
(
:construct_finder_sql
,
:select
=>
'id'
)
)
ids
.
each
do
|
id
|
instance
=
klass
.
find
(
id
)
...
...
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