shorten/lib/log.rb

12 lines
190 B
Ruby
Raw Normal View History

2010-09-13 08:58:49 +00:00
class Log < Sequel::Model
unless table_exists?
set_schema do
primary_key :id
Integer :shorten_url_id
String :ip
String :coordinates
Time :time
end
create_table
end
end