Sha256: e6b37c9bbb9f44ae69714ef09f41e77bdb90e3a693e34440ca0779907ea7e2d0
Contents?: true
Size: 297 Bytes
Versions: 8
Compression:
Stored size: 297 Bytes
Contents
Sequel.migration do # Updates the database with the changes specified in the block. up do rename_column(:custom_field_types, :css_class, :html_class) end # Reverts the changes made in the up() block. down do rename_column(:custom_field_types, :html_class, :css_class) end end
Version data entries
8 entries across 8 versions & 1 rubygems