ref: master
db/migrate/20101202205446_remove_published_articles.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
class RemovePublishedArticles < ActiveRecord::Migration def self.up select_all("SELECT * from articles WHERE type = 'PublishedArticle'").each do |published| reference = select_one('select * from articles where id = %d' % published['reference_article_id']) if reference execute(ApplicationRecord.sanitize_sql(["UPDATE articles SET type = ?, abstract = ?, body = ? WHERE articles.id = ?", reference['type'], reference['abstract'], reference['body'], published['id']])) else execute("DELETE from articles where articles.id = #{published['id']}") end end end def self.down say 'Nothing to do' end end |