summaryrefslogtreecommitdiff
path: root/db/migrate/20110214073812_create_commands.rb
blob: 7e97ea1904ae08cb369f79894fdf416c3795894b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateCommands < ActiveRecord::Migration
  def self.up
    create_table :commands do |t|
      t.string :name
      t.string :technique

      t.timestamps
    end
  end

  def self.down
    drop_table :commands
  end
end