Sha256: 117f7ffe25506b730ca3d7954ff19336aa9c1c89abf7221355aa2a0dfe048dd8
Contents?: true
Size: 259 Bytes
Versions: 5
Compression:
Stored size: 259 Bytes
Contents
class AddTimeoutedToTickets < Sequel::Migration def up alter_table :tickets do add_column :timeouted, :boolean, :null => false, :default => false end end def down alter_table :tickets do drop_column :timeouted end end end
Version data entries
5 entries across 5 versions & 2 rubygems