Class: CommandTable

Inherits:
Object
  • Object
show all
Defined in:
lib/invocker/migrate.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



4
5
6
7
8
9
10
# File 'lib/invocker/migrate.rb', line 4

def change
  create_table :commands do |table|
  table.string :key
  table.string :command
  table.timestamps
  end
end