8 lines
221 B
Ruby
8 lines
221 B
Ruby
class AddJsonStoresToVideo < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :videos, :fingerprints, :text
|
|
add_column :videos, :video_metadata, :text
|
|
add_column :videos, :processing_info, :text
|
|
end
|
|
end
|