Sha256: 7c8956884afc0761a3408687be5caf23a59b1da854db91ab207e4ce240ca824a

Contents?: true

Size: 806 Bytes

Versions: 12

Compression:

Stored size: 806 Bytes

Contents

ActiveRecord::Schema.define do

  # Please keep these create table statements in alphabetical order
  # unless the ordering matters.  In which case, define them below

  create_table :authors, :force => true do |t|
    t.string :name, :null => false
  end

  create_table :posts, :force => true do |t|
    t.string  :type

    t.integer :author_id
    t.string  :title, :null => false
    t.text    :body, :null => false
    t.integer :taggings_count, :default => 0
  end

  create_table :taggings, :force => true do |t|
    t.integer :tag_id

    t.integer :polytag_id
    t.string  :polytag_type
    
    t.string  :taggable_type
    t.integer :taggable_id
  end

  create_table :tags, :force => true do |t|
    t.string  :type
    t.string  :name
    t.integer :taggings_count, :default => 0
  end

end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
store_base_sti_class-0.2.1 test/schema.rb
store_base_sti_class-0.2.0 test/schema.rb
store_base_sti_class-0.1.0 test/schema.rb
store_base_sti_class-0.0.2 test/schema.rb
store_base_sti_class-0.0.1 test/schema.rb
store_base_sti_class_for_3_1-0.0.1 test/schema.rb
store_base_sti_class_for_3_0-0.1.3 test/schema.rb
store_base_sti_class_for_3_0-0.1.2 test/schema.rb
store_base_sti_class_for_3_0-0.1.1 test/schema.rb
store_base_sti_class_for_3_0-0.1.0 test/schema.rb
store_base_sti_class_for_3_0-0.0.2 test/schema.rb
store_base_sti_class_for_3_0-0.0.1 test/schema.rb