class CreateQboErrors
Public Instance Methods
change()
click to toggle source
# File lib/generators/qbo_rails/install/templates/db/migrate/create_qbo_errors.rb, line 2 def change create_table :qbo_errors, force: true do |t| t.string :message t.text :body t.string :resource_type, limit: 100 t.integer :resource_id t.text :request_xml t.timestamps :null => false end end