Giter VIP home page Giter VIP logo

Comments (3)

activestylus avatar activestylus commented on July 19, 2024

Ok I see now you are taking a more explicit approach to schema definition. My original request still stands because its a pretty kickass feature,

In the meantime you should know that your polymorphic columns are not working (there are no specs for this relation apparently)

This works fine:

class Post < ActiveRecord::Base

  col :title
  col :author, :as => :belongs_to
  timestamps
end

This does not:

class Post < ActiveRecord::Base

  col :title
  col :author, :as => :belongs_to
  col :postable, :as => :polymorphic
  timestamps
end

Here's the trace:

NoMethodError: undefined method `polymorphic' for #<ActiveRecord::ConnectionAdapters::TableDefinition:0x00000102ad47d0>
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/bundler/gems/mini_record-8683b648bc76/lib/mini_record/auto_schema.rb:31:in `block in col'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/bundler/gems/mini_record-8683b648bc76/lib/mini_record/auto_schema.rb:30:in `each'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/bundler/gems/mini_record-8683b648bc76/lib/mini_record/auto_schema.rb:30:in `col'
  from /Users/me/apps/minirecord/app/models/post.rb:5:in `<class:Post>'
  from /Users/me/apps/minirecord/app/models/post.rb:1:in `<top (required)>'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:456:in `load'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:456:in `block in load_file'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:640:in `new_constants_in'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:455:in `load_file'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:342:in `require_or_load'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:489:in `load_missing_constant'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:181:in `block in const_missing'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:179:in `each'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:179:in `const_missing'
  from (irb):1
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/commands/console.rb:45:in `start'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/commands/console.rb:8:in `start'
  from /Users/me/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/commands.rb:40:in `<top (required)>'
  from script/rails:6:in `require'

from mini_record.

activestylus avatar activestylus commented on July 19, 2024

I've actually got some of this working now. Expect a patch soon...

from mini_record.

DAddYE avatar DAddYE commented on July 19, 2024

mmm, now with autocreation of columns from relationships isn't really necessary btw, due to tabledefinition limits you should be able to do:

class Foo < ActiveRecord::Base
  schema do |s|
    s.references :tagger, :polymorphic => true
    s.references :taggable, :polymorphic => { :default => 'Photo' }
  end
end

from mini_record.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.