Sha256: 498f306e6f2597ff9624d8cf0b5ce79a6164abf7a41bfb6d0ddad0e63eaf7781

Contents?: true

Size: 1.24 KB

Versions: 16

Compression:

Stored size: 1.24 KB

Contents

ActiveRecord::Schema.define :version => 0 do
  create_table "taggings", :force => true do |t|
    t.integer  "tag_id",        :limit => 11
    t.integer  "taggable_id",   :limit => 11
    t.string   "taggable_type"
    t.string   "context"
    t.datetime "created_at"
    t.integer  "tagger_id",     :limit => 11
    t.string   "tagger_type"
  end

  add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id"
  add_index "taggings", ["taggable_id", "taggable_type", "context"], :name => "index_taggings_on_taggable_id_and_taggable_type_and_context"

  create_table "tags", :force => true do |t|
    t.string "name"
  end
  
  create_table :taggable_models, :force => true do |t|
    t.column :name, :string
    t.column :type, :string
  end
  
  create_table :untaggable_models, :force => true do |t|
    t.column :taggable_model_id, :integer
    t.column :name, :string
  end
  
  create_table :cached_models, :force => true do |t|
    t.column :name, :string
    t.column :type, :string
    t.column :cached_tag_list, :string
  end
  
  create_table :taggable_users, :force => true do |t|
    t.column :name, :string
  end
  
  create_table :other_taggable_models, :force => true do |t|
    t.column :name, :string
    t.column :type, :string
  end
end

Version data entries

16 entries across 16 versions & 5 rubygems

Version Path
axtro-acts-as-taggable-on-2.0.6 spec/schema.rb
axtro-acts-as-taggable-on-2.0.5 spec/schema.rb
axtro-acts-as-taggable-on-2.0.4 spec/schema.rb
yetanothernguyen-acts-as-taggable-on-0.0.5 spec/schema.rb
yetanothernguyen-acts-as-taggable-on-0.0.4 spec/schema.rb
ghazel-acts-as-taggable-on-2.0.6.1 spec/schema.rb
litmus-acts-as-taggable-on-2.0.4 spec/schema.rb
acts-as-taggable-on-2.0.6 spec/schema.rb
acts-as-taggable-on-2.0.5 spec/schema.rb
acts-as-taggable-on-2.0.4 spec/schema.rb
acts-as-taggable-on-2.0.3 spec/schema.rb
acts-as-taggable-on-2.0.2 spec/schema.rb
acts-as-taggable-on-2.0.1 spec/schema.rb
acts-as-taggable-on-2.0.0 spec/schema.rb
acts-as-taggable-on-2.0.0.rc2 spec/schema.rb
acts-as-taggable-on-2.0.0.rc1 spec/schema.rb