Sha256: dc0f1796c17ddc8212e81ba4db53a0448c2e5fec060669f42fc910733958e720
Contents?: true
Size: 374 Bytes
Versions: 9
Compression:
Stored size: 374 Bytes
Contents
Sequel.migration do # Updates the database with the changes specified in the block. up do Zen.database[:settings].filter(:name => 'website_enabled').delete end # Reverts the changes made in the up() block. down do Zen.database[:settings].insert( :name => 'website_enabled', :group => 'general', :default => true, :type => 'radio' ) end end
Version data entries
9 entries across 9 versions & 1 rubygems