You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/app/models/visualization/like.rb

16 lines
279 B

# encoding: utf-8
module CartoDB
class Like < Sequel::Model
# PK is (actor,subject)
unrestrict_primary_key
# @param actor String (uuid)
# @param subject String (uuid)
# @param created_at DateTime
end
class AlreadyLikedError < StandardError; end
end