Sha256: def4cf53eec6afe0cd3f0e014a195af5092348bd7edde8156ac79a8207225d84
Contents?: true
Size: 228 Bytes
Versions: 12
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
12 entries across 12 versions & 2 rubygems