eBooru/db/migrate/20241110171006_add_transcript_to_uploads.rb
edshot99 4928747b83 add transcript support
it could be possible to load closed captions and subtitles from the transcript div via javascript, but I hate javascript so perhaps some other time.
2024-11-10 13:58:15 -06:00

8 lines
185 B
Ruby

# frozen_string_literal: true
class AddTranscriptToUploads < ActiveRecord::Migration[7.1]
def change
add_column(:uploads, :transcript, :text, null: false, default: "")
end
end