From 4a9bf38ef61b39e482458ba56cd1e6fea379b4d7 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 21 Nov 2025 21:01:50 -0500 Subject: Added "listening to" box in sidebar --- db/migrate/20251122012500_create_scrobbles.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 db/migrate/20251122012500_create_scrobbles.rb (limited to 'db/migrate') diff --git a/db/migrate/20251122012500_create_scrobbles.rb b/db/migrate/20251122012500_create_scrobbles.rb new file mode 100644 index 0000000..9f00435 --- /dev/null +++ b/db/migrate/20251122012500_create_scrobbles.rb @@ -0,0 +1,12 @@ +class CreateScrobbles < ActiveRecord::Migration[7.1] + def change + create_table :scrobbles do |t| + t.string :title + t.string :artist + t.string :album + t.string :image + + t.timestamps + end + end +end -- cgit 1.4.1