Sha256: def4cf53eec6afe0cd3f0e014a195af5092348bd7edde8156ac79a8207225d84
Contents?: true
Size: 228 Bytes
Versions: 15
Compression:
Stored size: 228 Bytes
Contents
class MoveSectionsToPages < ActiveRecord::Migration def self.up Section.update_all "type = 'Page'", "type = 'Section' OR type IS NULL" end def self.down Section.update_all "type = NULL", "type = 'Page'" end end
Version data entries
15 entries across 15 versions & 2 rubygems