Skip to content

Instantly share code, notes, and snippets.

@rishav
Created August 9, 2011 05:28
Show Gist options
  • Save rishav/1133460 to your computer and use it in GitHub Desktop.
Save rishav/1133460 to your computer and use it in GitHub Desktop.
class AbstractModel < ActiveRecord::Base
self.abstract_class = true
end
class Foo < AbstractModel
end
class Bar < AbstractModel
end
@liuliang
Copy link

(Table doesn't exist) rails 3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment