Sha256: e5a02b3e00d12afb90abfe9e5ac2dcb7b52862f3e4da12fbb8f3a68cf85aa197
Contents?: true
Size: 230 Bytes
Versions: 65
Compression:
Stored size: 230 Bytes
Contents
class CheckoutStateMachine < ActiveRecord::Migration def self.up change_table :checkouts do |t| t.string :state end end def self.down change_table :checkouts do |t| t.remove :state end end end
Version data entries
65 entries across 53 versions & 10 rubygems