Sha256: cc29fb809729c51942ebca0beb162fe7e033531ae7795ead0aeb2f48ca2b87e0

Contents?: true

Size: 686 Bytes

Versions: 10

Compression:

Stored size: 686 Bytes

Contents

ActiveRecord::Schema.define(:version => 0) do
  create_table "users", :force => true do |t|
    t.timestamps
  end
  
  create_table "commentables", :force => true do |t|
    t.timestamps
  end

  create_table "comments", :force => true do |t|
    t.integer "commentable_id", :default => 0
    t.string "commentable_type", :limit => 15, :default => ""
    t.string "title", :default => ""
    t.text "body", :default => ""
    t.string "subject", :default => ""
    t.integer "user_id", :default => 0, :null => false
    t.integer "parent_id"
    t.integer "lft"
    t.integer "rgt"
    t.timestamps
  end

  add_index "comments", "user_id"
  add_index "comments", "commentable_id"
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
elight-acts_as_commentable_with_threading-0.1.1 spec/db/schema.rb
acts_as_commentable_with_threading-1.1.1 spec/db/schema.rb
acts_as_commentable_with_threading-1.1.0 spec/db/schema.rb
muck-comments-0.1.1 test/db/schema.rb
muck-comments-0.1.2 test/db/schema.rb
muck-comments-0.1.3 test/db/schema.rb
muck-comments-0.1.4 test/db/schema.rb
muck-comments-0.1.5 test/db/schema.rb
muck-comments-0.1.6 test/db/schema.rb
muck-comments-0.1.0 test/db/schema.rb