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
181 B
Ruby
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
|