feature/share-libs
rb 8 lines 202 Bytes
Raw
1 class CreateBassFiles < ActiveRecord::Migration[6.1]
2 def change
3 create_table :bass_files do |t|
4 t.references :audio_file, index: true, foreign_key: true
5 t.timestamps
6 end
7 end
8 end