summaryrefslogtreecommitdiff
path: root/db/migrate/20120513154359_create_gui_functions.rb
blob: e1d814ced17e2be676220e0540e02409023b630f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateGuiFunctions < ActiveRecord::Migration
  def self.up
    create_table :gui_functions do |t|
      t.string :category
      t.string :name
      t.string :description
      t.timestamps
    end
  end

  def self.down
    drop_table :gui_functions
  end
end