Sha256: d1e3771ee9aca423099a34328c1e1d74757c76f0bf9803ad5238f8e627ae3edb
Contents?: true
Size: 326 Bytes
Versions: 19
Compression:
Stored size: 326 Bytes
Contents
# This migration comes from erp_forms (originally 20120824012520) class CreateTickets < ActiveRecord::Migration def up unless table_exists?(:tickets) create_table :tickets do |t| t.timestamps end end end def down if table_exists?(:tickets) drop_table :tickets end end end
Version data entries
19 entries across 19 versions & 6 rubygems