Created
October 2, 2008 00:33
-
-
Save piclez/14243 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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