summaryrefslogtreecommitdiff
path: root/db/migrate/20120215160448_create_softkey_functions.rb
blob: 569c50c147c0d0a5a8f5db8d6db880c3b38d67e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateSoftkeyFunctions < ActiveRecord::Migration
  def up
    create_table :softkey_functions do |t|
      t.string :name

      t.timestamps
    end

  end

  def down
    drop_table :softkey_functions
  end
end