eBooru/db/migrate/20241009155301_add_title_to_post_versions.rb
2024-10-30 18:52:53 -05:00

8 lines
159 B
Ruby

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