Sha256: 62e62a849bb0950b1167f92e2f5796ce86d5b72d62dee87923c65a3a22a029bb

Contents?: true

Size: 1.34 KB

Versions: 8

Compression:

Stored size: 1.34 KB

Contents

require File.join(File.dirname(__FILE__), 'fixtures/document')
ActiveRecord::Schema.define(:version => 0) do

  create_table "people", :force => true do |t|
    t.string   "name"
    t.string   "email"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "person_contact_infos", :force => true do |t|
    t.integer "contact_id", :null => false
    t.string  "name",       :null => false
    t.string  "value",      :null => false
  end

  create_table "posts", :force => true do |t|
    t.string   "title"
    t.text     "body"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "post_attributes", :force => true do |t|
    t.integer "post_id", :null => false
    t.string "name", :null => false
    t.string "value", :null => false
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "preferences", :force => true do |t|
    t.integer "person_id", :null => false
    t.string  "key",       :null => false
    t.string  "value",     :null => false
  end
  
  create_table "documents", :force => true do |t|
    t.string "name", :null => false
    t.datetime "created_at"
    t.datetime "updated_at"
  end
  
  create_table "document_attributes", :force => true do |t|
    t.integer "document_id", :null => false
    t.string "name", :null => false
    t.string "value", :null => false
  end

end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
has_custom_fields-0.0.5 spec/schema.rb
has_custom_fields-0.0.4 spec/schema.rb
has_custom_fields-0.0.3 spec/schema.rb
has_custom_fields-0.0.2 spec/schema.rb
has_custom_fields-0.0.1 spec/schema.rb
acts_as_eav_model-0.0.2 spec/schema.rb
acts_as_eav_model-0.0.1 spec/schema.rb
acts_as_eav_model-0.0.0 spec/schema.rb