shorten/lib/log.rb
2010-09-13 16:58:49 +08:00

12 lines
No EOL
190 B
Ruby

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