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