Files
discourse/db/migrate/20220801044610_add_outbound_message_id_to_post.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
171 B
Ruby
Raw Normal View History

2022-09-26 09:14:24 +10:00
# frozen_string_literal: true
class AddOutboundMessageIdToPost < ActiveRecord::Migration[7.0]
def change
add_column :posts, :outbound_message_id, :string
end
end