Skip to content

Instantly share code, notes, and snippets.

@dkubb
Forked from sporkmonger/crawled_uri.rb
Created June 25, 2009 03:04
Show Gist options
  • Save dkubb/135658 to your computer and use it in GitHub Desktop.
Save dkubb/135658 to your computer and use it in GitHub Desktop.
require 'dm-core'
require 'dm-types'
class CrawledURI
include DataMapper::Resource
storage_names[:default] = 'crawled_uris'
property :id, Serial
# Data
property :uri, URI, :nullable => false
property :status, Integer, :nullable => false
# Metadata
property :created_at, DateTime, :nullable => false
property :crawled_at, DateTime
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment