Sha256: 6feabe94b931e9d3c675a74a8da29ffb4ddcb2151911debdf58d719f9ee4ab1b

Contents?: true

Size: 592 Bytes

Versions: 15

Compression:

Stored size: 592 Bytes

Contents

ActiveRecord::Schema.define(:version => 0) do

  create_table :categories, :force => true do |t|
    t.column :name, :string
    t.column :parent_id, :integer
    t.column :lft, :integer
    t.column :rgt, :integer
    t.column :organization_id, :integer
  end

  create_table :departments, :force => true do |t|
    t.column :name, :string
  end
  
  create_table :notes, :force => true do |t|
    t.column :body, :text
    t.column :parent_id, :integer
    t.column :lft, :integer
    t.column :rgt, :integer
    t.column :notable_id, :integer
    t.column :notable_type, :string
  end
end

Version data entries

15 entries across 15 versions & 5 rubygems

Version Path
chrislloyd-awesome_nested_set-1.1.2 test/db/schema.rb
chrislloyd-awesome_nested_set-1.1.3 test/db/schema.rb
collectiveidea-awesome_nested_set-1.1.1 test/db/schema.rb
collectiveidea-awesome_nested_set-1.2.0 test/db/schema.rb
collectiveidea-awesome_nested_set-1.3.0 test/db/schema.rb
collectiveidea-awesome_nested_set-1.4.0 test/db/schema.rb
collectiveidea-awesome_nested_set-1.4.1 test/db/schema.rb
collectiveidea-awesome_nested_set-1.4.2 test/db/schema.rb
ggoodale-awesome_nested_set-1.1.1 test/db/schema.rb
ggoodale-awesome_nested_set-1.1 test/db/schema.rb
shuber-awesome_nested_set-1.1.2 test/db/schema.rb
shuber-awesome_nested_set-1.1.3 test/db/schema.rb
shuber-awesome_nested_set-1.1.4 test/db/schema.rb
awesome_nested_set-1.4.2 test/db/schema.rb
awesome_nested_set-1.4.1 test/db/schema.rb