feature/share-libs
rb 12 lines 283 Bytes
Raw
1 class CreateLyricSynches < ActiveRecord::Migration[6.1]
2 def change
3 create_table :lyric_synches do |t|
4 t.references :audio_file, foreign_key: true
5 t.references :user, foreign_key: true
6 t.string :lyric
7 t.string :time
8
9 t.timestamps
10 end
11 end
12 end