Skip to content

Instantly share code, notes, and snippets.

@johnnaegle
Last active September 7, 2016 18:10
Show Gist options
  • Save johnnaegle/79dde8972bee135958c3cdc298c5c378 to your computer and use it in GitHub Desktop.
Save johnnaegle/79dde8972bee135958c3cdc298c5c378 to your computer and use it in GitHub Desktop.
ActiveRecord::Schema.define do
create_table :nodes, :force => true do |t|
t.string :name
t.string :value
t.string :ancestry, :index => true
end
end
class Node < ActiveRecord::Base
has_ancestry
inherited_attribute :value
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment