about summary refs log tree commit diff stats
path: root/db/migrate/20251122012500_create_scrobbles.rb
blob: 9f0043593ffbf1985fd6ef0408888aaf4ec2d137 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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