feature/share-libs
rb 11 lines 255 Bytes
Raw
1 class CreateKaraokeFiles < ActiveRecord::Migration[6.0]
2 def change
3 create_table :karaoke_files do |t|
4 t.string :link
5 t.references :song, foreign_key: true
6 t.references :user, foreign_key: true
7
8 t.timestamps
9 end
10 end
11 end