Files
adamantium/db/migrate/20240321211120_add_in_reply_to_to_posts.rb

10 lines
146 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :posts do
add_column :in_reply_to, :text
end
end
end