Sha256: 1f1ff8fc6c8c2b4fc84a20bab326ce809cb15c0321d94f56313d03bc64e1aee6
Contents?: true
Size: 367 Bytes
Versions: 31
Compression:
Stored size: 367 Bytes
Contents
class AddPublishableToSmithyPageContents < ActiveRecord::Migration def up add_column :smithy_page_contents, :publishable, :boolean, :default => false Smithy::PageContent.reset_column_information Smithy::PageContent.all.each{|pc| pc.update_attribute(:publishable, true) } end def down remove_column :smithy_page_contents, :publishable end end
Version data entries
31 entries across 31 versions & 1 rubygems