eBooru/db/migrate/20241110170937_add_transcript_to_posts.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
181 B
Ruby

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