eBooru/db/migrate/20241110170945_add_transcript_to_post_versions.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
169 B
Ruby

# frozen_string_literal: true
class AddTranscriptToPostVersions < ActiveRecord::Migration[7.1]
def change
add_column :post_versions, :transcript, :text
end
end