Skip to content

Commit

Permalink
Initial import.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Bogan committed Jan 23, 2010
1 parent a9cc6a6 commit 99006de
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lib/license.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# this is usesthis.com, a sinatra application.
# it is copyright (c) 2009-2010 daniel bogan (d @ waferbaby, then a dot and a 'com')
#

require 'datamapper'

class License
include DataMapper::Resource

property :slug, String, :key => true
property :title, String
property :url, String, :length => 150

timestamps :at

has n, :interviews, :through => Resource
end

0 comments on commit 99006de

Please sign in to comment.