Skip to content

Instantly share code, notes, and snippets.

@piclez
Created October 2, 2008 00:33
Show Gist options
  • Save piclez/14243 to your computer and use it in GitHub Desktop.
Save piclez/14243 to your computer and use it in GitHub Desktop.
class Asset
include DataMapper::Resource
property :id, Integer, :serial => true
property :user_id, Integer, :nullable => false, :index => true
property :title, String
property :filename, String
property :content_type, String
property :size, Integer
property :created_at, DateTime
property :updated_at, DateTime
property :type, Discriminator
belongs_to :user
end
class Photo < Asset
run_later do
# Rmagick commands
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment