forked from e621ng/e621ng

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.
8 lines
169 B
Ruby
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
|