forked from e621ng/e621ng
8 lines
159 B
Ruby
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
|