class CreateLogEvents < ActiveRecord::Migration def self.up create_table :log_events do |t| t.string :name t.string :description t.integer :team t.timestamps end end def self.down drop_table :log_events end end