Class: CreateNiftyKeyValueStoreTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/nifty/key_value_store/migration.rb

Instance Method Summary collapse

Instance Method Details

#downObject



10
11
12
# File 'lib/nifty/key_value_store/migration.rb', line 10

def down
  drop_table :nifty_key_value_store
end

#upObject



3
4
5
6
7
8
# File 'lib/nifty/key_value_store/migration.rb', line 3

def up
  create_table :nifty_key_value_store do |t|
    t.integer :parent_id
    t.string  :parent_type, :group, :name, :value
  end
end