Log scrobblings

This commit is contained in:
magnolia-fan
2011-11-29 23:42:21 +04:00
parent 74b5619748
commit 41e9165ff4
12 changed files with 116 additions and 77 deletions
@@ -0,0 +1,9 @@
class CreateScrobbles < ActiveRecord::Migration
def change
create_table :scrobbles do |t|
t.integer :user_id
t.integer :track_id
t.datetime :scrobbled_at
end
end
end