summaryrefslogtreecommitdiff
path: root/db/migrate/20110305151637_add_movement_to_commands.rb
blob: 521d322585cecfe8358c86d0d9420c56a1f998d3 (plain)
1
2
3
4
5
6
7
8
9
class AddMovementToCommands < ActiveRecord::Migration
  def self.up
    add_column :commands, :movement, :string
  end

  def self.down
    remove_column :commands, :movement
  end
end