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
cced76cf
Commit
cced76cf
authored
Jan 12, 2009
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated the rake task to take STI into consideration.
parent
5ec90a56
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletions
+17
-1
tasks/paperclip_tasks.rake
+17
-1
No files found.
tasks/paperclip_tasks.rake
View file @
cced76cf
...
...
@@ -14,10 +14,26 @@ 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
#{
klass
.
primary_key
}
FROM
#{
klass
.
table_name
}
"
)
ids
=
klass
.
connection
.
select_values
(
"SELECT
#{
quote_column
(
klass
.
primary_key
)
}
FROM
#{
quote_table
(
klass
.
table_name
)
}
#{
type_condition
(
klass
)
}
"
)
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