Class: EntityStorage::AddEntitiesTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- EntityStorage::AddEntitiesTable
- Defined in:
- lib/entity_storage.rb
Overview
This migration is required for EntityStorage to work correctly
Class Method Summary collapse
-
.create ⇒ Object
up and down functions call broken code in Rail3 migrations gem, called it ‘create’.
Class Method Details
.create ⇒ Object
up and down functions call broken code in Rail3 migrations gem, called it ‘create’
64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/entity_storage.rb', line 64 def self.create create_table "entity_storage", :force => true do |t| t.string "key", :limit => 512, :null => false t.text "value" t.datetime "created_at" t.datetime "updated_at" end add_index "entity_storage", ["created_at"], :name => "created_at" add_index "entity_storage", ["key"], :name => "key" add_index "entity_storage", ["updated_at"], :name => "updated_at" end |