Sha256: 9c53251b0b295c49f9aa4bb257a039002c6fae6a0dc6c7eb594c530fe10aa609
Contents?: true
Size: 272 Bytes
Versions: 7
Compression:
Stored size: 272 Bytes
Contents
Sequel.migration do # Updates the database with the changes specified in the block. up do drop_column(:comments, :defensio_signature) end # Reverts the changes made in the up() block. down do add_column(:comments, :defensio_signature, String) end end
Version data entries
7 entries across 7 versions & 1 rubygems