8 lines
324 B
Ruby
8 lines
324 B
Ruby
# We don't really care about this model. It's just being used to test the uniqueness controller
|
|
# specs. Nevertheless, we need a model because the counter caching functionality expects it.
|
|
#
|
|
class Dummy < ActiveRecord::Base
|
|
self.abstract_class = true # doesn't need to be backed by an actual table
|
|
is_impressionable
|
|
end
|