Exclude instagram posts from statuses

This commit is contained in:
2023-02-28 20:57:56 +11:00
parent 5bee222601
commit a2d3f5efcf
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table(:posts) do
set_column_type :syndication_sources, :jsonb
end
end
end