diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-11-21 21:01:50 -0500 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-11-21 21:01:50 -0500 |
| commit | 4a9bf38ef61b39e482458ba56cd1e6fea379b4d7 (patch) | |
| tree | ed778402e454cbbb3945f453f6d1682f4701924a /db/migrate | |
| parent | c260fbba4ed7cd0e7b80d5ae1316f597f9abb827 (diff) | |
| download | thoughts-4a9bf38ef61b39e482458ba56cd1e6fea379b4d7.tar.gz thoughts-4a9bf38ef61b39e482458ba56cd1e6fea379b4d7.tar.bz2 thoughts-4a9bf38ef61b39e482458ba56cd1e6fea379b4d7.zip | |
Added "listening to" box in sidebar
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20251122012500_create_scrobbles.rb | 12 |
1 files changed, 12 insertions, 0 deletions
| 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 @@ | |||
| 1 | class CreateScrobbles < ActiveRecord::Migration[7.1] | ||
| 2 | def change | ||
| 3 | create_table :scrobbles do |t| | ||
| 4 | t.string :title | ||
| 5 | t.string :artist | ||
| 6 | t.string :album | ||
| 7 | t.string :image | ||
| 8 | |||
| 9 | t.timestamps | ||
| 10 | end | ||
| 11 | end | ||
| 12 | end | ||
